13 lines
241 B
NASM
13 lines
241 B
NASM
; 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
|