0
[org 0x100]
mov bl,1
mov dh,23
mov dl,15
mov cx, 6 ;
mov bp, full

mov ah, 0x13
int 0x10

mov bl,4
mov dh,23
mov dl,22
mov cx, 4
mov bp, name

mov ah, 0x13
int 0x10

mov bl,7
mov dh,23
mov dl,27
mov cx, 2
mov bp, id1

mov ah, 0x13
int 0x10
mov bl,2
mov dh,23
mov dl,29
mov cx, 9
mov bp, id2

mov ah, 0x13
int 0x10

mov ax, 0x4c00
int 0x21

full: db ‘master’,0
name: db’arsl’,0
id1: db’mc’,0
id2: db’012345678′,0

Post a Comment

Dear readers, after reading the Content please ask for advice and to provide constructive feedback Please Write Relevant Comment with Polite Language.Your comments inspired me to continue blogging. Your opinion much more valuable to me. Thank you.

Tuesday, July 21, 2015

cs401 assignment 3 solution

[org 0x100]
mov bl,1
mov dh,23
mov dl,15
mov cx, 6 ;
mov bp, full

mov ah, 0x13
int 0x10

mov bl,4
mov dh,23
mov dl,22
mov cx, 4
mov bp, name

mov ah, 0x13
int 0x10

mov bl,7
mov dh,23
mov dl,27
mov cx, 2
mov bp, id1

mov ah, 0x13
int 0x10
mov bl,2
mov dh,23
mov dl,29
mov cx, 9
mov bp, id2

mov ah, 0x13
int 0x10

mov ax, 0x4c00
int 0x21

full: db ‘master’,0
name: db’arsl’,0
id1: db’mc’,0
id2: db’012345678′,0

No comments:

Post a Comment