formatiral arith.asm

This commit is contained in:
privsk 2025-10-22 10:37:01 +02:00
parent 27d49a9f27
commit efac46aa32

View file

@ -2,15 +2,19 @@ arithm START 0
LDA x
ADD y
STA sum
LDA x
SUB y
STA diff
LDA x
MUL y
STA prod
LDA x
DIV y
STA quot
LDA x
DIV y
MUL y
@ -18,6 +22,7 @@ arithm START 0
LDA x
SUB temp
STA mod
halt J halt
. podatki