mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
cleanup
This commit is contained in:
parent
cd99fe46fd
commit
69ca4fe304
@ -33,12 +33,7 @@ charset {
|
||||
set_irqd()
|
||||
ubyte bank = @($0001)
|
||||
@($0001) = bank & %11111011 ; enable CHAREN, so the character rom accessible at $d000
|
||||
; memcopy($d000, CHARSET, 256*8*2) ; copy the charset to RAM TODO memcopy > 256 length
|
||||
uword cc = 0
|
||||
repeat 256*8*2 {
|
||||
@(CHARSET+cc) = @($d000+cc)
|
||||
cc++
|
||||
}
|
||||
memcopy($d000, CHARSET, 256*8*2) ; copy the charset to RAM
|
||||
|
||||
@($0001) = bank ; reset previous memory banking
|
||||
clear_irqd()
|
||||
|
@ -224,9 +224,7 @@ main {
|
||||
|
||||
shipdata {
|
||||
|
||||
%option force_output
|
||||
|
||||
; Ship model data converted from BBC Elite's Cobra MK 3
|
||||
; Ship model data converted from BBC Elite's Cobra MK 3
|
||||
; downloaded from http://www.elitehomepage.org/archive/index.htm
|
||||
|
||||
const ubyte totalNumberOfEdges = 51
|
||||
|
@ -5,9 +5,6 @@
|
||||
|
||||
; Note: this program is compatible with C64 and CX16.
|
||||
|
||||
; TODO why has the prg become bigger since register args?
|
||||
|
||||
|
||||
main {
|
||||
|
||||
sub start() {
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
; Note: this program is compatible with C64 and CX16.
|
||||
|
||||
; TODO why has the prg become bigger since register args?
|
||||
|
||||
main {
|
||||
|
||||
struct Ball {
|
||||
|
Loading…
x
Reference in New Issue
Block a user