1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 03:40:19 +10:00
collapseos/tests/zasm/test7.asm
2019-12-31 13:07:05 -05:00

6 lines
113 B
NASM

; It's fine to declare the same constant twice. Only the first value is
; kept
.equ FOO 42
.equ FOO 22
ld a, FOO