File: opense-stub.asm

package info (click to toggle)
opense-basic 1%3A3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 772 kB
  • sloc: asm: 10,643; makefile: 10
file content (12 lines) | stat: -rw-r--r-- 215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
;; Stub ROM to use OpenSE BASIC in 128K models
org 0

;; Select ROM 1 (the 48K BASIC ROM, which OpenSE BASIC replaces)
ld bc, 7ffdh
ld a, 10h
out (c), a

;; Fill with zeroes up to 16384 bytes
rept 3ff9h
defb 0
endm