hi
1) can someone please tell me how, in a nasm source file, i can specify a constant expression with the remainder, example
"db 7/4" is equivalent "db 2"
what i want is the remainder:
"db 7%4" doesnt seem to work, how do i express that??
2) i want to write a makefile, which demands that some constant expression in two.asm depends on the size of one.bin (nasm -f bin -o one.bin one.asm):
-how do i find out the size of one.bin after its compilation?
-how do i set the environment variable in the makefile?
-how can i access it in the source of two.asm??
thanks in advance
martin