loop.tasm

This commit is contained in:
Timerix 2025-03-12 21:27:40 +05:00
parent 0fa4e24421
commit dd8c65ef79

View File

@ -3,5 +3,12 @@ Example of self-repeating code section
*/ */
.main: .main:
//TODO loop example
exit .loop
const8 datum "ITERATION!!! "
movc ax 1
movc bx 1
movc cx @datum
movc dx #datum
sys
jmp @loop