1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-24 00:30:18 +10:00
collapseos/tools/tests/zasm/test7.asm
Virgil Dupras c2d84563dd zasm: allow duplicate const definition
This will allow interesting override scenarios, adding flexibility.
2019-07-23 16:01:23 -04: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