diff options
author | Stanislav Karchebny <berkus@users.sourceforge.net> | 2003-09-25 11:43:28 +0000 |
---|---|---|
committer | Stanislav Karchebny <berkus@users.sourceforge.net> | 2003-09-25 11:43:28 +0000 |
commit | d52236c00efb0d198b71d1ac6e83182095563f4a (patch) | |
tree | 5e1eb711136d3e7556905630543029bc44072883 /test | |
parent | 5e8f36611f0d2543aa4f2cb5da02892b83c6994a (diff) | |
download | nasm-d52236c00efb0d198b71d1ac6e83182095563f4a.tar.gz |
Revert erroneous macro added and modify __OUTPUT_FORMAT__ to a string const
Diffstat (limited to 'test')
-rw-r--r-- | test/nasmformat.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nasmformat.asm b/test/nasmformat.asm index 82d61c15..5b4dc25e 100644 --- a/test/nasmformat.asm +++ b/test/nasmformat.asm @@ -1,9 +1,9 @@ -%if __NASM_FORMAT__ == 'bin' +%if __OUTPUT_FORMAT__ == 'bin' db 'This is binary format file' -%elif __NASM_FORMAT__ == 'obj' +%elif __OUTPUT_FORMAT__ == 'obj' db 'This is object format file' |