mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
19 lines
409 B
Plaintext
19 lines
409 B
Plaintext
|
|
||
|
HEADER APPLICATION "test" "TestApp" "V1.0" {
|
||
|
structure VLIR
|
||
|
dostype USR
|
||
|
author "Maciej Witkowiak"
|
||
|
info "This is just an example."
|
||
|
}
|
||
|
|
||
|
; output binary file for header will be 'vlir-head'
|
||
|
; base address for chains >=1 will be $3000
|
||
|
; output binary file for chain #0 is 'vlir0'
|
||
|
; output binary file for chain #1 is 'vlir1'
|
||
|
; output binary file for chain #2 is 'vlir2'
|
||
|
VLIR vlir-head 0x3000 {
|
||
|
vlir0
|
||
|
vlir1
|
||
|
vlir2
|
||
|
}
|