Use '.ifdef' and '.ifndef' instead of '.if .defined' and '.if .not .defined'.

This commit is contained in:
Christian Groessler
2013-09-19 22:36:22 +02:00
parent ae53413c5c
commit 0a7cb64d2e
9 changed files with 20 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ DEBUG = 1
USEWSYNC= 1
CHKBUF = 1 ; check if bounce buffering is needed (bounce buffering is always done if set to 0)
.if .defined(__ATARIXL__)
.ifdef __ATARIXL__
SHRAM_HANDLERS = 1
.include "atari.inc"
@@ -1147,4 +1147,4 @@ orig_len: .res 2
req_len: .res 2
retlen: .res 2
.endif ; .if .defined(__ATARIXL__)
.endif ; .ifdef __ATARIXL__