]> git.sur5r.net Git - cc65/commitdiff
Replaced '=' by ':=' where applicable and moved the atmos specific assembler
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 28 Feb 2010 10:22:26 +0000 (10:22 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 28 Feb 2010 10:22:26 +0000 (10:22 +0000)
include into the asminc directory.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4609 b7a2c559-68d2-44c3-8de9-860c34a00d81

asminc/atmos.inc [new file with mode: 0644]
libsrc/atmos/atmos.inc [deleted file]

diff --git a/asminc/atmos.inc b/asminc/atmos.inc
new file mode 100644 (file)
index 0000000..dfbcd10
--- /dev/null
@@ -0,0 +1,31 @@
+;
+; Oric atmos zeropage and ROM definitions
+;
+
+
+; ---------------------------------------------------------------------------
+; Zero page
+
+
+
+; ---------------------------------------------------------------------------
+; Low memory
+
+CAPSLOCK        := $20C
+CURS_Y          := $268
+CURS_X          := $269
+STATUS          := $26A
+TIMER3          := $276
+KEYBUF          := $2DF
+
+
+; ---------------------------------------------------------------------------
+; ROM entries
+
+PRINT           := $F77C
+
+
+; ---------------------------------------------------------------------------
+; I/O
+
+SCREEN          := $BB80
diff --git a/libsrc/atmos/atmos.inc b/libsrc/atmos/atmos.inc
deleted file mode 100644 (file)
index 54ca3b8..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-;
-; Oric atmos zeropage and ROM definitions
-;
-
-
-; ---------------------------------------------------------------------------
-; Zero page
-
-
-
-; ---------------------------------------------------------------------------
-; Low memory
-                       
-CAPSLOCK        = $20C
-CURS_Y          = $268
-CURS_X          = $269
-STATUS          = $26A
-TIMER3          = $276
-KEYBUF          = $2DF
-
-
-; ---------------------------------------------------------------------------
-; ROM entries
-
-PRINT           = $F77C
-
-
-; ---------------------------------------------------------------------------
-; I/O
-
-SCREEN          = $BB80