Logo 
Search:

Assembly Language Articles

Submit Article
Home » Articles » Assembly Language » Homework HelpRSS Feeds

Program to read and display date of BIOS in your machine

Posted By: Emma Campbell     Category: Assembly Language     Views: 8158

Write a Program to read and display date of BIOS in your machine.

Code for Program to read and display date of BIOS in your machine in Assembly Language

data segment
    bufo db "The BIOS date is : $"
    buf db 8 dup(0), '$'
data ends

code segment
    assume cs:code, ds:data
start :
    mov ax, data
    mov ds, ax
    mov es, ax
    mov ax, 0ffffh
    mov ds, ax
    mov si, 0005h
    mov di, offset buf
    cld
    mov cx, 08h
next :
    lodsb
    stosb
    loop next

    mov ah, 09h
    mov bx, data
    mov ds, bx
    lea dx, bufo
    int 21h

    lea dx, buf
    int 21h

    mov ax, 4c00h
    int 21h
code ends
    end start
  
Share: 


Didn't find what you were looking for? Find more on Program to read and display date of BIOS in your machine Or get search suggestion and latest updates.

Emma Campbell
Emma Campbell author of Program to read and display date of BIOS in your machine is from Toronto, Canada.
 
View All Articles

 

Other Interesting Articles in Assembly Language:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
Siby Xavier from India Comment on: Apr 11
please check this link for sample programs
itsourtech.blogs...ot.in/.../...ith-8086_8654.html

View All Comments