Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
400B

  1. ; Example include file for userspace program
  2. ; All userspace programs include this file in they main source file so that
  3. ; they know a couple of vital things about the system such as where user memory
  4. ; starts. This is an example file with required constants.
  5. .equ USER_CODE 0x4800 ; Where in memory user code is loaded
  6. .equ USER_RAMSTART 0x8800 ; Where in memory user memory begins