mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-12-26 03:32:23 +00:00
Fixed file name inside disk.
This commit is contained in:
parent
da2fd8545b
commit
f44a7132d1
@ -1,6 +1,6 @@
|
|||||||
// Create a D64 disk containing the program and a sprite file
|
// Create a D64 disk containing the program and a sprite file
|
||||||
.disk [filename="%O", name="DISK", id=1] {
|
.disk [filename="%O", name="DISK", id=1] {
|
||||||
[name="%^O", type="prg", segments="Program"],
|
[name="KERNALLOAD", type="prg", segments="Program"],
|
||||||
[name="SPRITE", type="prg", segments="Sprite"]
|
[name="SPRITE", type="prg", segments="Sprite"]
|
||||||
}
|
}
|
||||||
.segmentdef Program [segments="Basic, Code, Data"]
|
.segmentdef Program [segments="Basic, Code, Data"]
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
// To execute the program succesfully you must mount the D64 disk image and execute the kernalload.PRG program
|
// To execute the program succesfully you must mount the D64 disk image and execute the kernalload.PRG program
|
||||||
// Create a D64 disk containing the program and a sprite file
|
// Create a D64 disk containing the program and a sprite file
|
||||||
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
||||||
[name="KERNALLOAD.D64", type="prg", segments="Program"],
|
[name="KERNALLOAD", type="prg", segments="Program"],
|
||||||
[name="SPRITE", type="prg", segments="Sprite"]
|
[name="SPRITE", type="prg", segments="Sprite"]
|
||||||
}
|
}
|
||||||
.segmentdef Program [segments="Basic, Code, Data"]
|
.segmentdef Program [segments="Basic, Code, Data"]
|
||||||
|
@ -856,7 +856,7 @@ Target platform is c64basic / MOS6502X
|
|||||||
// Upstart
|
// Upstart
|
||||||
// Create a D64 disk containing the program and a sprite file
|
// Create a D64 disk containing the program and a sprite file
|
||||||
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
||||||
[name="KERNALLOAD.D64", type="prg", segments="Program"],
|
[name="KERNALLOAD", type="prg", segments="Program"],
|
||||||
[name="SPRITE", type="prg", segments="Sprite"]
|
[name="SPRITE", type="prg", segments="Sprite"]
|
||||||
}
|
}
|
||||||
.segmentdef Program [segments="Basic, Code, Data"]
|
.segmentdef Program [segments="Basic, Code, Data"]
|
||||||
@ -1268,7 +1268,7 @@ ASSEMBLER BEFORE OPTIMIZATION
|
|||||||
// Upstart
|
// Upstart
|
||||||
// Create a D64 disk containing the program and a sprite file
|
// Create a D64 disk containing the program and a sprite file
|
||||||
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
||||||
[name="KERNALLOAD.D64", type="prg", segments="Program"],
|
[name="KERNALLOAD", type="prg", segments="Program"],
|
||||||
[name="SPRITE", type="prg", segments="Sprite"]
|
[name="SPRITE", type="prg", segments="Sprite"]
|
||||||
}
|
}
|
||||||
.segmentdef Program [segments="Basic, Code, Data"]
|
.segmentdef Program [segments="Basic, Code, Data"]
|
||||||
@ -1820,7 +1820,7 @@ Score: 811
|
|||||||
// Upstart
|
// Upstart
|
||||||
// Create a D64 disk containing the program and a sprite file
|
// Create a D64 disk containing the program and a sprite file
|
||||||
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
.disk [filename="kernalload.d64", name="DISK", id=1] {
|
||||||
[name="KERNALLOAD.D64", type="prg", segments="Program"],
|
[name="KERNALLOAD", type="prg", segments="Program"],
|
||||||
[name="SPRITE", type="prg", segments="Sprite"]
|
[name="SPRITE", type="prg", segments="Sprite"]
|
||||||
}
|
}
|
||||||
.segmentdef Program [segments="Basic, Code, Data"]
|
.segmentdef Program [segments="Basic, Code, Data"]
|
||||||
|
Loading…
Reference in New Issue
Block a user