diff options
Diffstat (limited to 'sem3/task5/lab5_1.asm')
| -rw-r--r-- | sem3/task5/lab5_1.asm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sem3/task5/lab5_1.asm b/sem3/task5/lab5_1.asm new file mode 100644 index 0000000..f75b039 --- /dev/null +++ b/sem3/task5/lab5_1.asm @@ -0,0 +1,12 @@ +200: +mov ah,02 +int 21 +inc dx +ret + +100: +mov dx,32 +mov cx,14 +call 200 +loop 106 +int 20
\ No newline at end of file |