-
Notifications
You must be signed in to change notification settings - Fork 15
Prepare workspace
Paul Raingeard edited this page Nov 26, 2021
·
2 revisions
This is only a directory that will host your program file and the startup script for the Amiga. It can be created by the build process by setting to true the options createStartupSequence and createExeFileParentDir.
Create directories:
- uae
- uae/dh0
- uae/dh0/s
Create the file uae/dh0/s/startup-sequence and type :
sys:myprogram
Edit the vlink setting:
{
"version": "2.0.0",
"tasks": [
{
"type": "amigaassembly",
"vasm": {
...
},
"vlink": {
"exefilename": "../uae/dh0/myprogram",
...
},
"label": "amigaassembly: build",
}
]
}
The directory is relative to the build dir
Now if you build your program, you will get your binary in uae/dh0/myprogram.