dev: created cold/warm boot entry points and stubs
This commit is contained in:
parent
a83e7f52d4
commit
a4761efed2
5 changed files with 24 additions and 4 deletions
11
boot.asm
11
boot.asm
|
|
@ -1,2 +1,13 @@
|
|||
; SPDX-License-Identifier: MPL-2.0
|
||||
; SPDX-FileCopyrightText: (c) 2025 A.M. Rowsell
|
||||
.section "boot","acrx"
|
||||
.global zone_setup
|
||||
.global os_warm_boot
|
||||
.extern os_main_loop
|
||||
|
||||
zone_setup:
|
||||
ld sp, 0x6FFF
|
||||
jp os_main_loop
|
||||
|
||||
os_warm_boot:
|
||||
ret
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue