back | Last regenerated: 2022-04-20 17:31:36 kio |
-e --compareThis allows to check whether the output for a certain source file has changed: The output file of the assembly is not written but compared to the already existing output file of an older assembly. The main purpose for this option is to support zasm's self test, but you may use it to check your source for code-effective modifications without the need to supply a different output file name and to run cmp against the two files. $> zasm -e zx82.asm "ROMs/zx82 standard rom for ram/zxsp rom for ram.rom" --> mismatch at $33FC: old=$AA, new=$00 --> mismatch at $33FD: old=$04, new=$00 assemble: 10665 lines time: 0.1129 sec. zasm: 2 errors In this #insert: Examples: Assembler directives: #if, #elif, #else, #endif An output file is actually written to the /tmp/ directory. |