1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00

Added some consts

This commit is contained in:
jespergravgaard 2017-12-04 23:54:12 +01:00
parent 56b74e7e0f
commit 3569405dc1
2 changed files with 170 additions and 1449 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,24 +1,24 @@
import "basic-floats"
import "print"
byte* PROCPORT = $01;
byte* CHARGEN = $d000;
byte* SCREEN = $0400;
const byte* PROCPORT = $01;
const byte* CHARGEN = $d000;
const byte* SCREEN = $0400;
byte* RASTER = $d012;
byte* BORDERCOL = $d020;
const byte* RASTER = $d012;
const byte* BORDERCOL = $d020;
byte* SPRITES_XPOS = $d000;
byte* SPRITES_YPOS = $d001;
byte* SPRITES_XMSB = $d010;
byte* SPRITES_ENABLE = $d015;
byte* SPRITES_EXPAND_Y = $d017;
byte* SPRITES_PRIORITY = $d01b;
byte* SPRITES_MC = $d01c;
byte* SPRITES_EXPAND_X = $d01d;
byte* SPRITES_MC1 = $d025;
byte* SPRITES_MC2 = $d026;
byte* SPRITES_COLS = $d027;
const byte* SPRITES_XPOS = $d000;
const byte* SPRITES_YPOS = $d001;
const byte* SPRITES_XMSB = $d010;
const byte* SPRITES_ENABLE = $d015;
const byte* SPRITES_EXPAND_Y = $d017;
const byte* SPRITES_PRIORITY = $d01b;
const byte* SPRITES_MC = $d01c;
const byte* SPRITES_EXPAND_X = $d01d;
const byte* SPRITES_MC1 = $d025;
const byte* SPRITES_MC2 = $d026;
const byte* SPRITES_COLS = $d027;
const byte sinlen_x = 221;
const byte[] sintab_x = $1000;