ALP Program For CPU ID

ALP Program For CPU ID














.model small
.586p
.data
man db 'Manufacture : $'
A1 dd ?
A2 dd ?
A3 dd ?
.code
.startup
mov ax,00h
cpuid
mov A1,ebx
mov A2,edx
mov A3,ecx
mov dx,offset man
mov ah,09h
int 21h
mov ah,40h
mov bx,01h
mov cx,0ch
mov dx,offset A1
int 21h
.exit
end

0 comments :