Use NL/EOS instead of 10/0, use constants.asm for global constants
This commit is contained in:
6
makefile
6
makefile
@ -1,7 +1,9 @@
|
||||
tests: tests.o core.o console.o string.o
|
||||
gcc tests.o core.o console.o string.o -o tests -no-pie -z noexecstack
|
||||
tests: tests.o constants.o core.o console.o string.o
|
||||
gcc tests.o constants.o core.o console.o string.o -o tests -no-pie -z noexecstack
|
||||
tests.o: tests.asm
|
||||
nasm tests.asm -f elf64 -l tests.lst -g -F dwarf
|
||||
constants.o: constants.asm
|
||||
nasm constants.asm -f elf64 -l constants.lst -g -F dwarf
|
||||
core.o: core.asm
|
||||
nasm core.asm -f elf64 -l core.lst -g -F dwarf
|
||||
console.o: console.asm
|
||||
|
Reference in New Issue
Block a user