Upload
This commit is contained in:
commit
43352ff262
1291 changed files with 220976 additions and 0 deletions
45
MAIN/PROT/TEST.ASM
Normal file
45
MAIN/PROT/TEST.ASM
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
IDEAL
|
||||
|
||||
SEGMENT lerssicode para private
|
||||
|
||||
string db 'Aja t„m„ eri booteilla!',10,13,'$'
|
||||
dw 10000 dup(?)
|
||||
|
||||
start:
|
||||
mov dx, 3c8h
|
||||
xor al, al
|
||||
out dx, al
|
||||
inc dx
|
||||
dec al
|
||||
out dx, al
|
||||
out dx, al
|
||||
out dx, al
|
||||
|
||||
mov ah, 2
|
||||
mov dl, 7
|
||||
int 21h
|
||||
|
||||
mov dx, 3c8h
|
||||
xor al, al
|
||||
out dx, al
|
||||
inc dx
|
||||
out dx, al
|
||||
out dx, al
|
||||
out dx, al
|
||||
|
||||
mov ah, 9h
|
||||
mov dx, OFFSET string
|
||||
push cs
|
||||
pop ds
|
||||
int 21h
|
||||
|
||||
mov ax, 1
|
||||
int 16h
|
||||
|
||||
mov ax, 4c00h
|
||||
int 21h
|
||||
|
||||
dw 1
|
||||
ENDS
|
||||
|
||||
END start
|
||||
Loading…
Reference in a new issue