]> git.sur5r.net Git - cc65/commitdiff
add missing stddrv defines for atarixl 74/head
authorChristian Groessler <chris@groessler.org>
Tue, 21 Jan 2014 22:08:32 +0000 (23:08 +0100)
committerChristian Groessler <chris@groessler.org>
Tue, 21 Jan 2014 22:09:00 +0000 (23:09 +0100)
libsrc/atari/joy_stat_stddrv.s
libsrc/atari/joy_stddrv.s
libsrc/atari/tgi_stat_stddrv.s
libsrc/atari/tgi_stddrv.s

index cbaf344d06e51b880c45ee8d3cfe5bc09316d6d2..4528aa20de2e0701f6d80220c960852971780414 100644 (file)
@@ -7,8 +7,16 @@
 ;
 
         .export _joy_static_stddrv
+        .ifdef  __ATARIXL__
+        .import _atrxstd_joy
+        .else
         .import _atrstd_joy
+        .endif
 
 .rodata
 
+        .ifdef  __ATARIXL__
+_joy_static_stddrv := _atrxstd_joy
+        .else
 _joy_static_stddrv := _atrstd_joy
+        .endif
index f3ab74e7b14fce45d515c3404faf4340949dfbc1..e82dadb73859f3f58493e8db44fef9a822f2b7d3 100644 (file)
@@ -10,4 +10,9 @@
 
 .rodata
 
-_joy_stddrv:    .asciiz "atrstd.joy"
+_joy_stddrv:
+        .ifdef  __ATARIXL__
+                .asciiz "atrxstd.joy"
+        .else
+                .asciiz "atrstd.joy"
+        .endif
index 5f1be70f833ae3cf971eb1c9fb147541bb782aad..dc3b7cc710f7f6b2524e50d237804a1defd7cfaa 100644 (file)
@@ -7,8 +7,16 @@
 ;
 
         .export _tgi_static_stddrv
+        .ifdef  __ATARIXL__
+        .import _atrx8_tgi
+        .else
         .import _atr8_tgi
+        .endif
 
 .rodata
 
+        .ifdef  __ATARIXL__
+_tgi_static_stddrv := _atrx8_tgi
+        .else
 _tgi_static_stddrv := _atr8_tgi
+        .endif
index bec03051138e1ebc6fe59d0a694ad1396b22d287..e2f68a50e7a7c28a530199fdc6aaa68228269c95 100644 (file)
@@ -10,4 +10,9 @@
 
 .rodata
 
-_tgi_stddrv:    .asciiz "atr8.tgi"
+_tgi_stddrv:
+        .ifdef  __ATARIXL__
+                .asciiz "atrx8.tgi"
+        .else
+                .asciiz "atr8.tgi"
+        .endif