I have a small problem with the use of the VLINK. I hope someone can help me:
In the VIC-20 program source code, I am using the *=<expression> to define the base address for the code section (starts at $1001) and the character section (starts at $1C00):
Code: Select all
*=$1001
; Code and data
...
*=$1C00
; Character RAM
...
- - Two bytes header
- Followed by code section with the machine code and data
- Followed by the area filled with zeros
- Starting with the position $C02 (because of the 2 bytes header) in the file are appended custom characters.
Please see attached image:
Code: Select all
Broken external image link
https://gcdn.pbrd.co/images/rMtBoCi129Vg.png?o=1
STeN