From: Christian Groessler Date: Wed, 12 Jun 2013 23:16:35 +0000 (+0200) Subject: Move scrdev into it's own file. On the atarixl target it will be referenced by crt0.s. X-Git-Tag: V2.15~223^2~96 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7eca62f8e4953ae69c9b2201c829287c355751dc;p=cc65 Move scrdev into it's own file. On the atarixl target it will be referenced by crt0.s. --- diff --git a/libsrc/atari/graphics.s b/libsrc/atari/graphics.s index 60f2ff789..cad5412bc 100644 --- a/libsrc/atari/graphics.s +++ b/libsrc/atari/graphics.s @@ -15,6 +15,7 @@ .import clriocb .import fdtoiocb .import newfd + .import scrdev .importzp tmp1,tmp2,tmp3 .include "atari.inc" @@ -100,8 +101,3 @@ cioerr: jsr fddecusage ; decrement usage counter of fd as open failed jmp __do_oserror .endproc ; __graphics - - - .rodata - -scrdev: .byte "S:", 0 diff --git a/libsrc/atari/scrdev.s b/libsrc/atari/scrdev.s new file mode 100644 index 000000000..c9d5b6919 --- /dev/null +++ b/libsrc/atari/scrdev.s @@ -0,0 +1,7 @@ +; Name of the "screen" device + + .export scrdev + + .rodata + +scrdev: .byte "S:", 0