mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 19:10:56 +11:00
6 lines
113 B
NASM
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
|