example for creating VLIR binary using ca65

git-svn-id: svn://svn.cc65.org/cc65/trunk@1341 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2002-07-10 19:29:34 +00:00
parent a152fe71c5
commit 63123a3566
5 changed files with 197 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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
}