mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 21:30:55 +11:00
bc1496a7e3
It was a bad idea to remove it. Now that I'm introducing the concept of a per-app glue file, it becomes much easier to build emulated zasm as a userspace app.
8 lines
400 B
Plaintext
8 lines
400 B
Plaintext
; Example include file for userspace program
|
|
; All userspace programs include this file in they main source file so that
|
|
; they know a couple of vital things about the system such as where user memory
|
|
; starts. This is an example file with required constants.
|
|
|
|
.equ USER_CODE 0x4800 ; Where in memory user code is loaded
|
|
.equ USER_RAMSTART 0x8800 ; Where in memory user memory begins
|