]> git.sur5r.net Git - cc65/blobdiff - asminc/telestrat.inc
Fixed gcc compiler warning (#867)
[cc65] / asminc / telestrat.inc
index 9d79499203909653a2acef7e118664d6f35af0af..f2eb42ff473d521ee5b04fb66255c110270b0baa 100644 (file)
@@ -54,7 +54,7 @@ IRQSVY          := $23           ; Used to save Y when a BRK call occurs
 IRQSVP          := $24           ; Used to save P when a BRK call occurs
 
 ADSCR           := $26
-SCRNB           := $28           ; id of the current window
+SCRNB           := $28           ; Id of the current window
 
 ADKBD           := $2A           ; Address ASCII conversion table
 
@@ -73,7 +73,9 @@ XLPRBI          := $48           ; Printer flag (b7)
 
 HRSX40          := $49
 HRSX6           := $4A
-ADHRS           := $4B           ; hires screen address (word)
+
+ADHRS           := $4B           ; Hires screen address (word)
+
 HRS1            := $4D
 HRS2            := $4F
 HRS3            := $51
@@ -229,8 +231,10 @@ XFREAD           = $27          ; Only in TELEMON 3.x (bank 7 of Orix)
 XBINDX           = $28          ; Convert a number into hex and displays on channel 0
 XDECIM           = $29
 XHEXA            = $2A          ; Convert a number into hex
+
 XEDT             = $2D          ; Launch editor
 XINSER           = $2E
+
 XSCELG           = $2F          ; Search a line in editor mode
 XOPEN            = $30          ; Only in TELEMON 3.x (bank 7 of Orix)
 XECRPR           = $33          ; Displays prompt
@@ -299,6 +303,7 @@ BUFTRV          := $100
 ; Page $200
 BNKST            := $200        ; Used to store signature of 8 bank (length : 8 bytes)
 TABDRV           := $208
+
 DRVDEF           := $20C
 FLGTEL           := $20D
 KOROM            := $20E        ; Used to compute the size of all rom bank. The result is store here. The value is in KB
@@ -310,14 +315,16 @@ TIMEM            := $212
 TIMEH            := $213
 FLGCLK           := $214
 FLGCLK_FLAG      := $215 
-FLGCUR           := $216        ; cursor management flag
+FLGCUR           := $216        ; Cursor management flag
 ; screens position managements
 
-FLGCUR_STATE     := $217        ; cursor state flag
+FLGCUR_STATE     := $217        ; Cursor state flag
+
 ADSCRL           := $218
 ADSCRH           := $21C
 SCRX             := $220
 SCRY             := $224
+
 SCRDX            := $228
 SCRFX            := $22C
 SCRDY            := $230
@@ -335,15 +342,16 @@ SCRTXT           := $256
 SCRHIR           := $25C
 SCRTRA           := $262        ; 6 bytes lenfth
 
-
 ; Keyboard management
 KBDCOL           := $268        ; 8 bytes length
 KBDFLG_KEY       := $270        ; 0 if no key pressed
 KBDVRR           := $272
+
 KBDVRL           := $273
 FLGKBD           := $275
 KBDFCT           := $276
 KBDSHT           := $278
+
 KBDKEY           := $279
 KBDCTC           := $27E
 LPRX             := $286
@@ -371,6 +379,7 @@ FLGRST           := $2EE
 CSRND            := $2EF
 VNMI             := $2F4
 ADIODB_VECTOR    := $2f7        ; 3 bytes length
+
 IRQVECTOR        := $2FA
 VAPLIC           := $2FD
 
@@ -463,5 +472,5 @@ XRWTS            := $FFAA
 ; MACRO 
 
 .macro  BRK_TELEMON   value
-       .byte $00,value
+        .byte $00,value
 .endmacro