1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00

Change the default load address for BBC micro

This commit is contained in:
Karol Stasiak 2020-04-06 22:52:49 +02:00
parent 4c39d5e6af
commit c53656aee2
2 changed files with 5 additions and 2 deletions

View File

@ -10,3 +10,5 @@ asm void putchar(byte register(a) char) @$FFE3 extern
inline void new_line() {
putchar(13)
}
const array __basic_padding = [$EA, $EA]

View File

@ -8,8 +8,9 @@ modules=bbc_kernal,bbc_hardware,default_panic,stdlib
[allocation]
; TODO
zp_bytes=$70-$8F
; $0E00 increases chances it will work on Electrons
segment_default_start=$0E00
; TODO: figure out a better loading scheme
segment_default_start=$1900
segment_default_layout=__basic_padding,main,*
; The following is for Model B; for Model A, consider changing it to $31FF
segment_default_end=$71FF