in-c

A program of Slots.

main.ngp

include "atari/130xe.ngp"

modules { "print.asm" "run.ngc" "shared.asm" "intro.ngc" "level.ngc" }

panes in ext { level }

resident { print, run, shared }

phase intro { needs intro  then level  entry introStart }
phase level { needs level             entry levelStart }
entry intro

container xex
130xe.ngp project
; An Atari 130XE: four extended Banks as a unit set, the Window PORTB brings
; one of them into, the Window over the OS ROM, every Region of the address
; space, and the Modules a program on this machine needs. What PORTB takes to
; show a state is the driver's and not here, and the OS is a Module rather than
; a Region because it occupies memory for a while rather than being a truth
; about addresses.
target {
  cpu "6502"

  ; DOS loads a `.xex`, and a Project naming any other Container is refused
  ; here rather than at the writer.
  containers xex

  units  extension 4
  window ext  $4000 .. $7FFF  views main, extension  base main
  window os   $C000 .. $CFFF, $D800 .. $FFFF  views rom, ram  base rom
}
storage { units extension }

target {
  region ram    $0000 .. $CFFF  ram
  region        $D800 .. $FFFF  ram
  region stack  $0100 .. $01FF  reserved
  region io     $D000 .. $D7FF  register

  ; This machine takes a `.xex` and nothing else, and a `.xex` is loaded by a
  ; DOS, which stays where a DOS of the 2.x family stays. A Project whose DOS
  ; takes more says so with a `reserved` Region of its own, which narrows this
  ; one further.
  region dos    $0700 .. $1FFF  reserved

  ; What the driver writes. A Project that wants more of the hardware by name
  ; declares it, as it declares the memory its DOS holds.
  register PORTB  $D301
}

; The OS, the driver for this storage and the decoders the tool ships, listed
; as a file of the Project's own would be. Every Transition calls the driver
; and the decoders, so they are resident; a decoder nothing uses is dropped.
modules { "atari/os.asm"  "atari/charsets.asm"  "atari/portb.asm"  "stream/zx0.asm" }
resident { os, charsets, portb, zx0 }
os.asm os
; The Atari OS as a Module: what it occupies while it is in memory, and the
; names a program reaches it by. Sections that hold no bytes, pinned where
; the OS lives, so the solver sees memory that is taken rather than a Region
; it may never allocate from — which is what lets a Phase that switches the
; ROM out have those addresses back, once there is a way to say so. See
; 0038 for why what occupies memory for a while is a Module, and 0051 for
; what this first cut settles and what it leaves.
;
; Every Section here is `root`: the OS and the hardware reach them with no
; Reference in any Chunk, so nothing else would keep them. None holds bytes,
; so none has a Payload and no Transition loads one.
;
; This is the OS as an XL or XE ships it. A machine whose OS lives elsewhere
; declares a Module of its own; the variant is what chooses.

.export RTCLOK, SDMCTL, SDLSTL, SDLSTH, CH, SETVBV, XITVBV

; The OS's half of the zero page. The program's own variables live above it,
; in the half the variant leaves to the solver.
.section zeropage at $0000, root
osZero
        .res $12
RTCLOK  .res 3                          ; $0012: the frame counter, three bytes
        .res $6B
.ends

; The OS's variables and buffers. The shadow registers are among them and
; are Labels here rather than registers of the variant: they are the OS's
; memory, which the OS copies to the hardware on every vertical blank, and
; a `register` Region inside this Section would be an address the Section
; may not cover.
.section absolute at $0200, root
osRam
        .res $2F
SDMCTL  .res 1                          ; $022F: shadows DMACTL
SDLSTL  .res 1                          ; $0230: the display list address, low
SDLSTH  .res 1                          ; $0231: and high
        .res $CA
CH      .res 1                          ; $02FC: the last key pressed, $FF for none
        .res $403
.ends

; The ROM, in the two ranges the hardware registers leave between them, and
; the entry points a program calls in the second. The RAM underneath is what
; a Phase without the OS would be given.
.section absolute at $C000, root
osRomLow
        .res $1000
.ends

.section absolute at $D800, root
osRomHigh
        .res $C5C
SETVBV  .res 3                          ; $E45C: A = the stage, X/Y = the routine
        .res 3
XITVBV  .res 3                          ; $E462: the end of a deferred routine
        .res $1B9B
.ends
charsets.asm charsets
; The Atari's two codes for the same letters, as Charsets.
;
; `atascii` is what the character I/O takes: the machine's own code, with the
; graphics characters where an ASCII machine keeps its control codes, and the
; letters where ASCII has them — which is why an unprefixed literal of plain
; letters has always worked and why nothing else has. `\n` is `$9B`, the end of
; line, and not `$0A`.
;
; `screen` is what the display reads out of screen memory, which is the same
; letters at other numbers. A program that writes where the display looks
; rather than through the OS wants this one.
;
; The graphics characters are written here as the Unicode the box-drawing and
; block characters have, so a picture drawn in the source is the picture the
; machine draws. A letter in inverse video is one of those too — Unicode squares
; them off in a negative, and `atascii"PRESS 🆂"` is seven bytes with the last
; one inverse. A whole line of inverse text is better asked of a Charset
; derived from this one, `.charset bright : atascii ^ $80`, which is what a
; derivation is for. Two of them have no exact Unicode: `$02` and `$0D` are a
; quarter of a cell where the nearest character is an eighth, and are written
; as `▕` and `▔`. Everything else, the inverse entries included, was read off
; the machine's own font and matches it.
;
; This Module emits nothing: it is two names and two tables.

.export atascii, screen

; tag atascii
.charset atascii
  "♥├▕┘┤┐╱╲◢▗◣▝▘▔▂▖♣┌─┼●▄▎┬┴▌└"                                       = $00
  "↑↓←→"                                                              = $1C
  " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" = $20
  "♦"                                                                 = $60
  "abcdefghijklmnopqrstuvwxyz"                                        = $61
  "♠"                                                                 = $7B
  "│"                                                                 = $7C
  "\n"                                                                = $9B

  ; Inverse video is the same glyph with the bits the other way round, which
  ; for the blocks and the triangles is another character Unicode draws. Every
  ; one of these was read off the machine's own font and is exact; the rest of
  ; the inverse half has no glyph to be written as, and is reached by adding
  ; $80 or by a Charset derived from this one.
  "▊" = $82        ; ▕
  "◤" = $88        ; ◢
  "▛" = $89        ; ▗
  "◥" = $8A        ; ◣
  "▙" = $8B        ; ▝
  "▟" = $8C        ; ▘
  "▆" = $8D        ; ▔
  "▜" = $8F        ; ▖
  "▀" = $95        ; ▄
  "▐" = $99        ; ▌
  "█" = $A0        ; the space

  ; And the letters, which Unicode squares off in a negative.
  "🅰🅱🅲🅳🅴🅵🅶🅷🅸🅹🅺🅻🅼🅽🅾🅿🆀🆁🆂🆃🆄🆅🆆🆇🆈🆉" = $C1
.endch
; end atascii

.charset screen
  " !\"#$%&'()*+,-./0123456789:;<=>?"                                 = $00
  "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"                                 = $20
  "♥├▕┘┤┐╱╲◢▗◣▝▘▔▂▖♣┌─┼●▄▎┬┴▌└"                                       = $40
  "♦"                                                                 = $60
  "abcdefghijklmnopqrstuvwxyz"                                        = $61
  "♠"                                                                 = $7B
  "│"                                                                 = $7C

  ; The same inverses, at the display's numbers.
  "▊" = $C2
  "◤" = $C8
  "▛" = $C9
  "◥" = $CA
  "▙" = $CB
  "▟" = $CC
  "▆" = $CD
  "▜" = $CF
  "▀" = $D5
  "▐" = $D9
  "█" = $80
  "🅰🅱🅲🅳🅴🅵🅶🅷🅸🅹🅺🅻🅼🅽🅾🅿🆀🆁🆂🆃🆄🆅🆆🆇🆈🆉" = $A1
.endch
portb.asm portb
; The storage driver for extended memory behind PORTB: the units are the
; Banks of the variant's `extension`, which a value written to PORTB brings
; into the $4000-$7FFF window — `ext` in the variant — and the stream is a
; pointer into that window that walks on to the next unit at its end. Each
; role is a macro declared with `.driver`, which the routine, the loader's
; glue, the decoders and the tool's own Procs expand where they use it as
; `nga.open`, `nga.read`, `nga.show` and `nga.showAt`. What the hardware
; calls each state of a Window is this Module's alone: `portbValues` holds
; a PORTB value per state of `ext` — base RAM first, then one per Bank, as
; many as the variant's `extension` counts — and the OS Window is bit 0.
; `PORTB` is the variant's register.
;
; Resident, and outside the window — the variant lists this Module in
; `resident`, and the tool holds it outside the window the stream reads
; through.

portbWindow    = $4000
portbWindowEnd = portbWindow + $4000    ; one past the window: the high byte of the first address outside it
portbUnitPages = $40                    ; a unit, in pages: what an offset carries by
portbBase      = $FF                    ; base RAM in, the OS ROM in, BASIC and the self-test out

.driver open    portbOpen
.driver read    portbRead
.driver stream  ext
.driver show    ext portbShow
.driver showAt  ext portbShowAt
.driver show    os  portbShowOs
.driver showAt  os  portbShowOsAt

.transform copy portbCopy

.macro portbOpen
        jsr portbOpenStream
.endm

.macro portbRead
        jsr portbReadByte
.endm

; The state to show, as the tool numbers ext's states: 0 is base RAM, and
; Bank n is n + 1.
.macro portbShow state
        ldx #state
        jsr portbSelect
.endm

; X = the state to show.
.macro portbShowAt
        jsr portbSelect
.endm

; The OS Window is bit 0 of PORTB: set for the ROM, state 0, and clear for
; the RAM beneath it, state 1. The bank bits are left as they are.
.macro portbShowOs state
        lda PORTB
        and #$FE
        ora #1 - state
        sta PORTB
.endm

; X = the state to show, 0 or 1.
.macro portbShowOsAt
        lda PORTB
        ora #1
        cpx #0
        beq @store
        and #$FE
@store
        sta PORTB
.endm

; PORTB per state of ext: base RAM, then one value per Bank. The list runs
; to the 130XE's four and the variant's count trims it, so that a variant
; with fewer Banks takes a prefix; one with more lists its values here.
; Every value has bit 0 set — the OS ROM in — which is what lets
; portbSelect keep the OS Window's bit with one `and` and no scratch byte.
.macro portbBankValues n, values...
.if n > 0
.match values
.case first, rest...
        .byte first
        portbBankValues n - 1, rest...
.endmatch
.endif
.endm

; The table portbSelect indexes, in a Section of its own: what has an
; address stands in one, and a Proc holds code alone.
.section
portbValues
        .byte portbBase
        portbBankValues extension, $E3, $E7, $EB, $EF
.ends

; The stream: where the next byte is, and which unit is in. A plain zero-page
; Section rather than Temporaries, because the value has to survive between
; one call and the next while nothing here is running.
.section zeropage
portbPtr        .res 2
portbUnit       .res 1
.ends

; X = the state of ext to show: its PORTB value, with the OS bit left as it
; is, since the OS Window is the same byte. Writes no memory, so that a
; loader running it leaves nothing behind but the register.
.proc portbSelect
        lda PORTB
        ora #$FE
        and portbValues,x
        sta PORTB
        rts
.endp

; A = the unit, X/Y = the offset in it: the stream stands there. An offset
; past the unit's end carries into the units after, since the routine
; counts on in a Frame without knowing where a unit ends: a unit is $4000
; bytes, so the offset's top two bits are units.
.proc portbOpenStream
        sta portbUnit
        stx portbPtr
        tya
@carry
        cmp #portbUnitPages
        bcc @within
        sbc #portbUnitPages
        inc portbUnit
        jmp @carry
@within
        clc
        adc #>portbWindow
        sta portbPtr+1
        ldx portbUnit
        inx                             ; Bank n is state n + 1
        jsr portbSelect
        rts
.endp

; A = the next byte of the stream. X and Y are not preserved.
.proc portbReadByte
        ldy #0
        lda (portbPtr),y
        inc portbPtr
        bne @done
        inc portbPtr+1
        ldy portbPtr+1
        cpy #>portbWindowEnd
        bne @done
        pha
        jsr portbNextUnit
        pla
@done
        rts
.endp

; The window's end: the next unit in, and the pointer back at its start.
.proc portbNextUnit
        inc portbUnit
        ldx portbUnit
        inx
        jsr portbSelect
        lda #0
        sta portbPtr
        lda #>portbWindow
        sta portbPtr+1
        rts
.endp

;  The decoder of `copy`: X/Y = the destination, the stream at the stored
; size and then the bytes. Reads the window through the pointer rather than
; through portbReadByte, which is what a driver's own decoder is for: a run at a
; time, where a run ends at the source's page end or at the size, so that
; the inner loop is `(zp),y` down to zero — the window's end is a page end,
; so a unit is never crossed inside a run.
portbDst  .ztemp 2
portbSize .ztemp 2
portbRun  .ztemp 1                      ; bytes in the run, zero for 256

.proc portbCopy
        stx portbDst
        sty portbDst+1
        jsr portbReadByte
        sta portbSize
        jsr portbReadByte
        sta portbSize+1
@run
        lda portbSize
        ora portbSize+1
        beq @done
        lda portbPtr                    ; to the end of the source's page
        eor #$FF
        clc
        adc #1
        sta portbRun
        lda portbSize+1
        bne @copy                       ; at least a page left: the run stands
        lda portbRun
        beq @cap                        ; a whole page, and less than one left
        cmp portbSize
        bcc @copy
@cap
        lda portbSize
        sta portbRun
@copy
        ldy portbRun
@byte
        dey
        lda (portbPtr),y
        sta (portbDst),y
        tya
        bne @byte
        ldx portbRun                    ; the run, as 256 where it is zero
        bne @counted
        inc portbPtr+1
        inc portbDst+1
        dec portbSize+1
        jmp @crossed
@counted
        txa
        clc
        adc portbPtr
        sta portbPtr
        bcc @source
        inc portbPtr+1
@source
        txa
        clc
        adc portbDst
        sta portbDst
        bcc @destination
        inc portbDst+1
@destination
        sec
        lda portbSize
        stx portbRun
        sbc portbRun
        sta portbSize
        bcs @crossed
        dec portbSize+1
@crossed
        lda portbPtr+1
        cmp #>portbWindowEnd
        bne @run
        jsr portbNextUnit               ; the window's end: the next unit in
        jmp @run
@done
        rts
.endp
zx0.asm zx0
; The decoder of `zx0` over any driver's stream: Einar Saukas's ZX0, version
; 2's standard forward stream, decoded as the reference dzx0.c does, driven
; by the stream's own end marker. Written here from the format, not ported:
; nothing of the reference's text is in it, and it is licensed as everything
; under lib/ is, see lib/LICENSE. Entered with X/Y = the destination and the
; stream at the stored size, which it reads past. A match is copied a byte
; at a time, forward, from what was written, which is what makes an offset
; shorter than its length — the run — come out right. Resident, and outside
; the driver's window.
;
;   zx0Bits      the bit buffer, a sentinel one above the bits still unread
;   zx0Offset    the last offset
;   zx0Length    the length in hand, or an offset's MSB while one is read
;   zx0Invert    one while an offset's MSB is read, whose data bits the
;                stream carries complemented; zero otherwise

.transform zx0 zx0Decode

zx0Dst    .ztemp 2
zx0Src    .ztemp 2
zx0Bits   .ztemp 1
zx0Offset .ztemp 2
zx0Length .ztemp 2
zx0Invert .ztemp 1

; The next bit of the stream, in A as zero or one and in the Z flag. The
; buffer holds a sentinel above the unread bits, so shifting it to nothing is
; the signal to fetch the next byte and put the sentinel back below it.
.proc zx0Bit
        asl zx0Bits
        bne @have
        nga.read
        rol                     ; the carry the asl left is the sentinel
        sta zx0Bits
@have
        lda #0
        rol
        rts
.endp

; An interlaced Elias gamma value into zx0Length: a control bit says whether
; a data bit follows, and the value begins at one. Three Procs chained by
; `then` because the value after an offset is entered with its first control
; bit already read, at zx0EliasData: the first falls through into the
; second, and the second branches into the third, which the chain is what
; allows.
.proc zx0Elias
        lda #1
        sta zx0Length
        lda #0
        sta zx0Length+1
.endp then zx0EliasMore
.proc zx0EliasMore
        jsr zx0Bit
        beq zx0EliasData        ; zero: a data bit follows
        rts
.endp then zx0EliasData
.proc zx0EliasData
        jsr zx0Bit
        eor zx0Invert
        lsr
        rol zx0Length
        rol zx0Length+1
        jmp zx0EliasMore
.endp

; One byte written: the destination moves on and the length in hand comes
; down, leaving Z set when it reaches zero.
.proc zx0Step
        inc zx0Dst
        bne @moved
        inc zx0Dst+1
@moved
        lda zx0Length
        bne @low
        dec zx0Length+1
@low
        dec zx0Length
        lda zx0Length
        ora zx0Length+1
        rts
.endp

; The length in hand copied from zx0Dst less the last offset to zx0Dst.
.proc zx0Copy
        sec
        lda zx0Dst
        sbc zx0Offset
        sta zx0Src
        lda zx0Dst+1
        sbc zx0Offset+1
        sta zx0Src+1
@byte
        ldy #0
        lda (zx0Src),y
        sta (zx0Dst),y
        inc zx0Src
        bne @from
        inc zx0Src+1
@from
        jsr zx0Step
        bne @byte
        rts
.endp

.proc zx0Decode
        stx zx0Dst
        sty zx0Dst+1
        nga.read             ; the stored size, which the end marker makes unnecessary
        nga.read
        lda #$80
        sta zx0Bits             ; an empty buffer: the sentinel alone
        lda #1
        sta zx0Offset
        lda #0
        sta zx0Offset+1         ; the last offset begins at one
        sta zx0Invert
@literals
        jsr zx0Elias
@literal
        nga.read
        ldy #0
        sta (zx0Dst),y
        jsr zx0Step
        bne @literal
        jsr zx0Bit
        bne @offset
        jsr zx0Elias            ; a match at the last offset
        jsr zx0Copy
        jsr zx0Bit
        beq @literals
@offset
        lda #1
        sta zx0Invert
        jsr zx0Elias            ; the new offset's MSB, complemented in the stream
        lda #0
        sta zx0Invert
        lda zx0Length
        beq @done               ; 256 is the end marker, and the one value with a low byte of zero
        lsr                     ; offset = MSB * 128 - LSB / 2
        sta zx0Offset+1
        lda #0
        ror
        sta zx0Offset
        nga.read
        lsr                     ; the LSB's low bit is the length's first control bit
        php
        eor #$FF
        sec
        adc zx0Offset
        sta zx0Offset
        bcs @subtracted
        dec zx0Offset+1
@subtracted
        plp
        lda #1
        sta zx0Length
        lda #0
        sta zx0Length+1
        bcs @counted            ; a control bit of one: the value is one
        jsr zx0EliasData
@counted
        inc zx0Length           ; a match at a new offset is one longer than written
        bne @copy
        inc zx0Length+1
@copy
        jsr zx0Copy
        jsr zx0Bit
        bne @offset
        jmp @literals
@done
        rts
.endp

print.asm

; The one thing both Phases need: a line on the screen, through the character
; I/O the OS opens on channel 0 before a program starts. `PUTREC` writes a
; record, so it ends the line itself.

CIOV   = $E456
ICCOM  = $0342
ICBAL  = $0344
ICBLL  = $0348
PUTREC = 9

; Both Phases call it, so both have to see the name.
.export printLine

; Where the line stands, and how long it is. Declaring where the two arguments
; are is what lets a Module of C call this one as a function.
.proc printLine
        .declare arg xy
        .declare arg a

        stx ICBAL
        sty ICBAL+1
        sta ICBLL
        lda #0
        sta ICBLL+1
        lda #PUTREC
        sta ICCOM
        ldx #0
        jsr CIOV
        rts
.endp

run.ngc

[[slot]] extern u8* const title;
[[slot]] extern void draw();

void showScreen()
{
  u8 left = 0;
  while ( title[left] != 0 )
    left += 1;
  printLine( (u16)title, left );
  draw();
}
run, as the tool compiled it run
.source "run.ngc", 1
.export title
.slot title, pointer, zeropage

.source "run.ngc", 2
.export draw
.slot draw, vector

.source "run.ngc", 4
.export showScreen
.proc showScreen
        .source "run.ngc", 6
        lda #0
        sta __0left
@l1
        .source "run.ngc", 7
        ldy __0left
        lda (title),y
        jeq @l3
        .source "run.ngc", 8
        inc __0left
        .source "run.ngc", 7
        jmp @l1
@l3
        .source "run.ngc", 9
        ldx title
        ldy title+1
        lda __0left
        jsr printLine
        .source "run.ngc", 10
        jsr draw
        .source "run.ngc", 11
        rts
__0left .ztemp 1
.endp

shared.asm

; Nothing of the program uses this. It is pinned into the Window's range to
; show what the rule permits: a Section in no Pane is in the Window's base
; state, and the Pane's Sections are in another, so the two never collide
; however their Phases overlap. `root`, because nothing names it.

.section absolute at $4000, root
spare
        .res 64
.ends

intro.ngc

[[implements(title)]] static const u8 introTitle[] = "INTRO";

static const u8 introText[] = "THE FIRST SCREEN";

[[implements(draw)]] void introDraw()
{
  printLine( (u16)introText, sizeof( introText ) - 1 );
}

void introStart()
{
  showScreen();
  [[transition(level)]] return;
}
intro, as the tool compiled it intro
.source "intro.ngc", 1
.section readonly
introTitle
        .byte 73, 78, 84, 82, 79, 0
.ends
.implements title, introTitle

.source "intro.ngc", 3
.section readonly
introText
        .byte 84, 72, 69, 32, 70, 73, 82, 83
        .byte 84, 32, 83, 67, 82, 69, 69, 78
        .byte 0
.ends

.source "intro.ngc", 5
.export introDraw
.proc introDraw
        .source "intro.ngc", 7
        ldx #<introText
        ldy #>introText
        lda #16
        jsr printLine
        .source "intro.ngc", 8
        rts
.endp
.implements draw, introDraw

.source "intro.ngc", 10
.export introStart
.proc introStart
        .source "intro.ngc", 12
        jsr showScreen
        .source "intro.ngc", 13
        .transition level
.endp

level.ngc

[[implements(title)]] static const u8 levelTitle[] = "LEVEL ONE";

[[in(level)]] static const u8 levelMap[] =
  "#####################################"
  "#...................................#"
  "#...................................#"
  "#......########.....................#"
  "#......#......#.....................#"
  "#......#......#.....................#"
  "#......########.....................#"
  "#...................................#"
  "#...................................#"
  "#####################################";

[[implements(draw)]] void levelDraw()
{
  [[with(level)]]
  {
    u16 at = (u16)levelMap;
    for ( u8 left = 10; left != 0; --left )
    {
      printLine( at, 37 );
      at += 37;
    }
  }
}

void levelStart()
{
  showScreen();
  for ( ;; )
  {
  }
}
level, as the tool compiled it level
.source "level.ngc", 1
.section readonly
levelTitle
        .byte 76, 69, 86, 69, 76, 32, 79, 78
        .byte 69, 0
.ends
.implements title, levelTitle

.source "level.ngc", 3
.section in level, readonly
levelMap
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 35, 35, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 35, 35
        .byte 46, 46, 46, 46, 46, 46, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 35, 35, 46, 46, 46
        .byte 46, 46, 46, 35, 46, 46, 46, 46
        .byte 46, 46, 35, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 35, 35, 46, 46, 46, 46, 46, 46
        .byte 35, 46, 46, 46, 46, 46, 46, 35
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 35, 35, 46
        .byte 46, 46, 46, 46, 46, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 35, 35, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 35
        .byte 35, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 46, 46, 46, 46
        .byte 46, 46, 46, 46, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 35, 35, 35, 35, 35, 35
        .byte 35, 35, 0
.ends

.source "level.ngc", 15
.export levelDraw
.proc levelDraw
        .source "level.ngc", 17
        .with level
        __w0
        .source "level.ngc", 26
        rts
__0at .ztemp 2
__1left .ztemp 1
.endp
.implements draw, levelDraw

.macro __w0
        .source "level.ngc", 19
        lda #<levelMap
        sta levelDraw.__0at
        lda #>levelMap
        sta levelDraw.__0at+1
        .source "level.ngc", 20
        lda #10
        sta levelDraw.__1left
@l2
        lda levelDraw.__1left
        jeq @l5
        .source "level.ngc", 22
        ldx levelDraw.__0at
        ldy levelDraw.__0at+1
        lda #37
        jsr printLine
        .source "level.ngc", 23
        clc
        lda levelDraw.__0at
        adc #37
        sta levelDraw.__0at
        lda levelDraw.__0at+1
        adc #0
        sta levelDraw.__0at+1
        .source "level.ngc", 20
        dec levelDraw.__1left
        jmp @l2
@l5
.endm

.source "level.ngc", 28
.export levelStart
.proc levelStart
        .source "level.ngc", 30
        jsr showScreen
@l1
        .source "level.ngc", 31
        jmp @l1
.endp
transition.asm nga.transition
; The Transition routine. Called by `jsr` from a `.transition`, with the
; statement's list right behind the call: the Phase to enter, and per Phase
; the code may be in, the unit and offset where the edge's Frame waits.
; nga.open and nga.read are the driver's roles, macros of the driver's
; Module expanded here; ngaShowBases is the Proc the tool generates beside
; the dispatcher, which reads from the Frame the base the entered Phase gives
; every Window and shows it, the stream's last; and ngaCurrentPhase is the
; Cell the tool generates. Everything else the edge has to say waits in the
; Frame, in storage. See docs/spec/transition.md.
;
; Its zero page is Temporaries: nothing of it is needed once the routine has
; jumped to the entered Phase's entry, and a `.transition` is a jump into the
; routine, so whatever the statement's Section had on the zero page is dead by
; then too. Two Temporaries never live at once share an address — see
; docs/decisions/0034-trace.md.

.export ngaTransition

ngaPtr .ztemp 2
ngaEntry .ztemp 2
ngaDst .ztemp 2
ngaValue .ztemp 2
ngaOffset .ztemp 2
ngaFramePos .ztemp 2
ngaWanted .ztemp 1
ngaCount .ztemp 1
ngaFrameUnit .ztemp 1
ngaUnit .ztemp 1

.proc ngaTransition
        pla
        sta ngaPtr
        pla
        sta ngaPtr+1            ; the return address: one below the statement's list
        ldy #1
        lda (ngaPtr),y
        sta ngaWanted           ; the Phase to enter
        iny
        lda (ngaPtr),y
        sta ngaCount            ; entries that follow
        lda ngaPtr
        clc
        adc #3
        sta ngaPtr
        bcc @scan
        inc ngaPtr+1
@scan
        lda ngaCount
        bne @check
        brk                     ; no entry for the current Phase: unreachable while the static rule holds
@check
        ldy #0
        lda (ngaPtr),y
        cmp ngaCurrentPhase
        beq @found
        lda ngaPtr              ; the next entry: four bytes on
        clc
        adc #4
        sta ngaPtr
        bcc @skipped
        inc ngaPtr+1
@skipped
        dec ngaCount
        jmp @scan
@found
        iny
        lda (ngaPtr),y
        sta ngaFrameUnit        ; the unit the Frame waits in
        iny
        lda (ngaPtr),y
        sta ngaFramePos
        iny
        lda (ngaPtr),y
        sta ngaFramePos+1       ; and where in it
.endp then ngaEnter

; The rest of it, and the way in for a Container that has no current Phase to
; look one up by: ngaWanted holds the Phase to enter and ngaFrameUnit and
; ngaFramePos where its Frame waits. The cold start comes here — see
; docs/decisions/0216-a-car-names-its-format-and-the-cold-start-is-an-edge.md.
.export ngaEnter
.proc ngaEnter
        jsr ngaFrameOpen
        nga.read
        sta ngaEntry
        nga.read
        sta ngaEntry+1
        nga.read
        sta ngaCount            ; blocks that follow
        lda #3
        jsr ngaFrameSkip
@block
        lda ngaCount
        beq @cells
        jsr ngaFrameOpen        ; back to the Frame: a block's stream replaced it
        nga.read
        sta ngaUnit
        nga.read
        sta ngaOffset
        nga.read
        sta ngaOffset+1
        nga.read
        sta ngaDst
        nga.read
        sta ngaDst+1
        nga.read
        pha                     ; the decoder's number
        lda #6
        jsr ngaFrameSkip
        lda ngaUnit
        ldx ngaOffset
        ldy ngaOffset+1
        nga.open                ; the block's stream: its stored size, then its bytes
        pla
        ldx ngaDst
        ldy ngaDst+1
        jsr ngaTransform
        dec ngaCount
        jmp @block
@cells
        jsr ngaFrameOpen
        nga.read
        sta ngaCount            ; Cell writes that follow, read in one stream
@cell
        lda ngaCount
        beq @enter
        nga.read
        sta ngaDst
        nga.read
        sta ngaDst+1
        nga.read
        sta ngaValue
        nga.read
        sta ngaValue+1
        ldy #0
        lda ngaValue
        sta (ngaDst),y          ; a Cell stands outside the driver's window
        iny
        lda ngaValue+1
        sta (ngaDst),y
        dec ngaCount
        jmp @cell
@enter
        jsr ngaShowBases        ; the entered Phase's base in every Window, read from the Frame
        lda ngaWanted
        sta ngaCurrentPhase     ; the Phase the program is in from here on
        jmp (ngaEntry)
.endp

; The Frame's stream, from where the routine last left it.
.proc ngaFrameOpen
        lda ngaFrameUnit
        ldx ngaFramePos
        ldy ngaFramePos+1
        nga.open
        rts
.endp

; A bytes on in the Frame, which is where its stream is opened next.
.proc ngaFrameSkip
        clc
        adc ngaFramePos
        sta ngaFramePos
        bcc @done
        inc ngaFramePos+1
@done
        rts
.endp
cell nga.cell
ngaCurrentPhase
runtime.asm nga.runtime
__small = 0
; The C runtime: what `*`, `/` and `%` call where no constant makes them
; shifts, adds and masks. Each Proc is called as any Proc of the assembler is:
; its `.declare arg`s written, `jsr`, its `.declare ret` read. A product is the
; low half, one for either sign; a quotient and a remainder truncate towards
; zero, as C does. See docs/decisions/0095-literals-and-the-runtime.md.

.export __mul8, __udiv8, __umod8, __sdiv8, __smod8
.export __mul16, __udiv16, __umod16, __sdiv16, __smod16
.export __mul8to16

; ---------------------------------------------------------------------------
; 8 bits

; left * right: the bits of `left` from the top, the product doubled before
; each and `right` added where the bit is set. The product is left in `A`,
; where it was made — see docs/decisions/0146-the-runtime-in-registers.md.
.proc __mul8, absolute within 256
        .declare arg u8
left    .ztemp 1
        .declare arg u8
right   .ztemp 1
        .declare ret a

        lda #0
        ldx #8
loop    asl                     ; product * 2
        asl left                ; the next bit of `left` into the carry
        bcc skip
        clc
        adc right
skip    dex
        bne loop
        rts
.endp

; left * right, both bytes, the whole product in two: the bits of `left` from
; the bottom, `right` doubled after each and added where the bit is set, the
; product kept in `Y` below and `X` above. Done once no bit of `left` is left,
; so a `left` below 16 takes at most four rounds where every one took eight:
; the compiler hands the operand the ranges hold smaller as `left`. `right` is
; doubled at most seven times, so its pair never carries out of the top — see
; docs/decisions/0144-a-multiply-stops-when-its-multiplier-does.md, and
; docs/decisions/0122-a-multiply-of-two-bytes.md for why there is a Proc of
; two bytes at all. `left` comes in `A`, which is where it is walked — see
; docs/decisions/0146-the-runtime-in-registers.md.
;
; Shaped as Oscar64's `mul16by8` is, which the benchmarks measured it against
; — see docs/decisions/0154-a-multiply-shaped-by-its-bits.md. `A` always holds
; a set bit at `next`, so a clear bit needs no test for zero; the first bit,
; where set, makes the product `right` rather than adding it to zero; and the
; last set bit adds straight into `product`.
.proc __mul8to16, absolute within 256
        .declare arg a
        .declare arg u8
right   .ztemp 1
        .declare ret u16
product .ztemp 2
high    .ztemp 1                ; `right`'s high byte as it is doubled
left    .ztemp 1                ; what is left of `left`, while `A` adds

        ldx #0
        lsr                     ; bit 0 of `left` into the carry
        beq last                ; no bit above it: the product is `right` or 0
        stx high
        ldy #0
        bcc next
        ldy right               ; bit 0 set: the product so far is `right`
        bcs next                ; always
add     sta left                ; what is left of it, while `A` adds
        clc
        tya
        adc right
        tay
        txa
        adc high
        tax
        lda left
next    asl right
        rol high
        lsr                     ; the next bit into the carry
        bcc next                ; clear: `A` still holds a set bit
        bne add                 ; set, and more above it
        clc                     ; set, and the last: added into the product
        tya
        adc right
        sta product
        txa
        adc high
        sta product+1
        rts
last    bcc zero                ; `A` and `X` are zero
        lda right
zero    sta product
        stx product+1
        rts
.endp

; dividend / divisor: the dividend shifted into the remainder in `A` a bit at a
; time, and the divisor subtracted where it fits, which sets the bit of the
; quotient the shift left clear in the dividend's byte. A carry out of the
; shift is a remainder of nine bits, which always fits. A divisor of zero
; always fits: the quotient is all ones.
;
; The quotient is built where the dividend was, a bit a turn, so that byte is
; both the argument and the result and its name says so — see
; docs/decisions/0119-one-temporary-carries-two-roles.md.
.proc __udiv8, absolute within 256
        .declare arg u8
        .declare ret u8
dividendAndQuotient .ztemp 1
        .declare arg u8
divisor .ztemp 1

        lda #0
        ldx #8
loop    asl dividendAndQuotient
        rol                     ; the remainder takes the dividend's top bit
        bcs subtract
        cmp divisor
        bcc skip
subtract
        sbc divisor             ; the carry is set on both ways here
        inc dividendAndQuotient ; the quotient's bit
skip    dex
        bne loop
        rts
.endp

; dividend % divisor: as `__udiv8`, the remainder kept. A divisor of zero leaves
; the dividend.
;
; The remainder is left in `A`, where it was made — see
; docs/decisions/0146-the-runtime-in-registers.md.
.proc __umod8, absolute within 256
        .declare arg u8
dividend .ztemp 1
        .declare arg u8
divisor .ztemp 1
        .declare ret a

        lda #0
        ldx #8
loop    asl dividend
        rol
        bcs subtract
        cmp divisor
        bcc skip
subtract
        sbc divisor
        inc dividend
skip    dex
        bne loop
        rts
.endp

; dividend / divisor, signed: the unsigned quotient of the magnitudes, negated
; where the signs differ.
;
; The dividend comes in `A` and the quotient goes back in it — see
; docs/decisions/0146-the-runtime-in-registers.md.
.proc __sdiv8, absolute within 256
        .declare ret a
        .declare arg a
        .declare arg i8
divisor .ztemp 1
sign    .ztemp 1

        tax                     ; the dividend, while the signs are compared
        eor divisor
        sta sign                ; bit 7: the signs differ

        txa
        bpl dividendKept
        eor #$FF
        clc
        adc #1
dividendKept
        sta __udiv8.dividendAndQuotient

        lda divisor
        bpl divisorKept
        eor #$FF
        clc
        adc #1
divisorKept
        sta __udiv8.divisor

        jsr __udiv8
        lda __udiv8.dividendAndQuotient
        bit sign
        bpl done
        eor #$FF
        clc
        adc #1
done    rts
.endp

; dividend % divisor, signed: the unsigned remainder of the magnitudes, negated
; where the dividend is negative.
;
; The dividend comes in `A` and the remainder goes back in it, as it comes
; back from `__umod8` — see docs/decisions/0146-the-runtime-in-registers.md.
.proc __smod8, absolute within 256
        .declare ret a
        .declare arg a
        .declare arg i8
divisor .ztemp 1
sign    .ztemp 1

        sta sign                ; bit 7: the dividend is negative
        tax                     ; `N` from the dividend: the caller promises none
        bpl dividendKept
        eor #$FF
        clc
        adc #1
dividendKept
        sta __umod8.dividend

        lda divisor
        bpl divisorKept
        eor #$FF
        clc
        adc #1
divisorKept
        sta __umod8.divisor

        jsr __umod8             ; the remainder in `A`
        bit sign
        bpl done
        eor #$FF
        clc
        adc #1
done    rts
.endp

; ---------------------------------------------------------------------------
; 16 bits

; left * right, the low half: the bits of `left` from the bottom, `right`
; doubled after each and added where the bit is set, the product kept in `Y`
; below and `high` above. Done once no bit of `left` is left, which is
; docs/decisions/0144-a-multiply-stops-when-its-multiplier-does.md carried from
; `__mul8to16` to the wider Proc: a multiplier whose high byte is zero takes at
; most eight rounds where every one took sixteen, and one of four bits takes
; four. The round is cheaper as well, `right` being doubled where
; the product was.
;
; `A` walks what is left of the multiplier. Over the low byte a set bit is
; rolled in above it first, so that `A` running out says the byte is done and
; not that the bits above are clear; over the high byte, which is walked at
; `narrow` and is where a multiplier of one byte starts, `A` running out ends
; the Proc. See docs/decisions/0170-a-wide-multiply-stops-when-its-multiplier-does.md.
.proc __mul16, absolute within 256
        .declare arg u16
left    .ztemp 2
        .declare arg u16
right   .ztemp 2
        .declare ret u16
product .ztemp 2
high    .ztemp 1                ; the product's high byte, while `Y` holds its low

.if __small
        ; Sixteen rounds, always, the multiplier walked from the bottom out of
        ; its own bytes and the product added up in memory: half the bytes of
        ; the shape above and none of what makes that one quick.
        lda #0
        sta product
        sta product+1
        ldx #16
@loop
        lsr left+1
        ror left
        bcc @+skip
        clc
        lda product
        adc right
        sta product
        lda product+1
        adc right+1
        sta product+1
@skip
        asl right
        rol right+1
        dex
        bne @-loop
        rts
.else
        ldy #0
        sty high
        lda left
        ldx left+1
        beq @+narrow            ; one byte of multiplier: `A` holds all of it
        sec
        ror                     ; bit 0 out, and a set bit in above the rest
        bcc @+lowNext
@lowAdd
        tax                     ; what is left of the byte, while `A` adds
        clc
        tya
        adc right
        tay
        lda high
        adc right+1
        sta high
        txa
@lowNext
        asl right
        rol right+1
        lsr                     ; the next bit into the carry
        bcc @-lowNext           ; clear: `A` still holds a set bit
        bne @-lowAdd            ; set, and more above it
        lda left+1              ; set, and the mark: the low byte is done
@narrow
        lsr
        bcc @+next
@add
        tax
        clc
        tya
        adc right
        tay
        lda high
        adc right+1
        sta high
        txa
@next
        asl right
        rol right+1
        lsr
        bcs @-add
        bne @-next
        sty product
        lda high
        sta product+1
        rts
.endif
.endp

; dividend / divisor, as `__udiv8` with the remainder in `rest`: the quotient
; is built where the dividend was, so that byte is both the argument and the
; result — see docs/decisions/0119-one-temporary-carries-two-roles.md.
;
; A divisor of one byte below $80 takes the loop at `narrow`, where the
; remainder lives in `A` alone: it stays below the divisor, so doubling it and
; taking a bit of the dividend keeps it inside a byte, and the compare is one
; instruction rather than four. The dividend's own pair carries the quotient
; in at the bottom as it carries the next bit out at the top, so the two
; rotations serve both and nothing counts the bit separately. Half the cycles
; of the wide loop, and it is the loop every call of `prime` takes — see
; docs/decisions/0171-a-divisor-of-one-byte.md. A divisor of zero
; goes wide, which is where the quotient of all ones and the remainder of the
; dividend that docs/spec/c-subset.md states come from.
.proc __udiv16, absolute within 256
        .declare arg u16
        .declare ret u16
dividendAndQuotient .ztemp 2
        .declare arg u16
divisor .ztemp 2
rest    .ztemp 2

.if !__small
        lda divisor+1
        bne wide
        lda divisor
        beq wide
        bmi wide                ; $80 and above: a remainder of nine bits
        ldx #16
        asl dividendAndQuotient
        rol dividendAndQuotient+1
        lda #0
@narrow
        rol                     ; the remainder takes the dividend's top bit
        cmp divisor
        bcc @+narrowSkip
        sbc divisor             ; the carry is set on both ways here
@narrowSkip
        rol dividendAndQuotient ; the quotient's bit in, the next dividend bit out
        rol dividendAndQuotient+1
        dex
        bne @-narrow
        rts
.endif

wide    lda #0
        sta rest
        sta rest+1
        ldx #16
loop    asl dividendAndQuotient
        rol dividendAndQuotient+1
        rol rest                ; the remainder takes the dividend's top bit
        rol rest+1
        bcs subtract
        lda rest                ; rest >= divisor?
        cmp divisor
        lda rest+1
        sbc divisor+1
        bcc skip
subtract
        lda rest
        sec
        sbc divisor
        sta rest
        lda rest+1
        sbc divisor+1
        sta rest+1
        inc dividendAndQuotient ; the quotient's bit
skip    dex
        bne loop
        rts
.endp

; dividend % divisor, as `__udiv16`, the remainder kept: it is built in the
; result's own bytes, and the dividend's, which hold the quotient nothing
; here wants, are the Proc's own. The narrow loop is `__udiv16`'s, and leaves
; in `A` the remainder that Proc throws away — see
; docs/decisions/0171-a-divisor-of-one-byte.md.
.proc __umod16, absolute within 256
        .declare arg u16
dividend .ztemp 2
        .declare arg u16
divisor .ztemp 2
        .declare ret u16
remainder .ztemp 2

.if !__small
        lda divisor+1
        bne wide
        lda divisor
        beq wide
        bmi wide                ; $80 and above: a remainder of nine bits
        lda #0
        sta remainder+1         ; a remainder below the divisor is one byte
        ldx #16
        asl dividend
        rol dividend+1
@narrow
        rol
        cmp divisor
        bcc @+narrowSkip
        sbc divisor
@narrowSkip
        rol dividend
        rol dividend+1
        dex
        bne @-narrow
        sta remainder
        rts
.endif

wide    lda #0
        sta remainder
        sta remainder+1
        ldx #16
loop    asl dividend
        rol dividend+1
        rol remainder
        rol remainder+1
        bcs subtract
        lda remainder
        cmp divisor
        lda remainder+1
        sbc divisor+1
        bcc skip
subtract
        lda remainder
        sec
        sbc divisor
        sta remainder
        lda remainder+1
        sbc divisor+1
        sta remainder+1
        inc dividend
skip    dex
        bne loop
        rts
.endp

; dividend / divisor, signed, as `__sdiv8`.
.proc __sdiv16, absolute within 256
        .declare arg i16
dividend .ztemp 2
        .declare arg i16
divisor .ztemp 2
        .declare ret i16
quotient .ztemp 2
sign    .ztemp 1

        lda dividend+1
        eor divisor+1
        sta sign                ; bit 7: the signs differ

        lda dividend+1
        bmi dividendNegative
        lda dividend
        sta __udiv16.dividendAndQuotient
        lda dividend+1
        sta __udiv16.dividendAndQuotient+1
        jmp dividendDone
dividendNegative
        lda dividend
        eor #$FF
        clc
        adc #1
        sta __udiv16.dividendAndQuotient
        lda dividend+1
        eor #$FF
        adc #0
        sta __udiv16.dividendAndQuotient+1
dividendDone

        lda divisor+1
        bmi divisorNegative
        lda divisor
        sta __udiv16.divisor
        lda divisor+1
        sta __udiv16.divisor+1
        jmp divisorDone
divisorNegative
        lda divisor
        eor #$FF
        clc
        adc #1
        sta __udiv16.divisor
        lda divisor+1
        eor #$FF
        adc #0
        sta __udiv16.divisor+1
divisorDone

        jsr __udiv16
        bit sign
        bmi negative
        lda __udiv16.dividendAndQuotient
        sta quotient
        lda __udiv16.dividendAndQuotient+1
        sta quotient+1
        rts
negative
        lda __udiv16.dividendAndQuotient
        eor #$FF
        clc
        adc #1
        sta quotient
        lda __udiv16.dividendAndQuotient+1
        eor #$FF
        adc #0
        sta quotient+1
        rts
.endp

; dividend % divisor, signed, as `__smod8`.
.proc __smod16, absolute within 256
        .declare arg i16
dividend .ztemp 2
        .declare arg i16
divisor .ztemp 2
        .declare ret i16
remainder .ztemp 2
sign    .ztemp 1

        lda dividend+1
        sta sign                ; bit 7: the dividend is negative

        lda dividend+1
        bmi dividendNegative
        lda dividend
        sta __umod16.dividend
        lda dividend+1
        sta __umod16.dividend+1
        jmp dividendDone
dividendNegative
        lda dividend
        eor #$FF
        clc
        adc #1
        sta __umod16.dividend
        lda dividend+1
        eor #$FF
        adc #0
        sta __umod16.dividend+1
dividendDone

        lda divisor+1
        bmi divisorNegative
        lda divisor
        sta __umod16.divisor
        lda divisor+1
        sta __umod16.divisor+1
        jmp divisorDone
divisorNegative
        lda divisor
        eor #$FF
        clc
        adc #1
        sta __umod16.divisor
        lda divisor+1
        eor #$FF
        adc #0
        sta __umod16.divisor+1
divisorDone

        jsr __umod16
        bit sign
        bmi negative
        lda __umod16.remainder
        sta remainder
        lda __umod16.remainder+1
        sta remainder+1
        rts
negative
        lda __umod16.remainder
        eor #$FF
        clc
        adc #1
        sta remainder
        lda __umod16.remainder+1
        eor #$FF
        adc #0
        sta remainder+1
        rts
.endp
transforms.asm nga.transforms
; The dispatcher over the decoders the program declared, in the order the
; tool numbered them. See docs/spec/transition.md.
.export ngaShowBases
.proc ngaShowBases
        nga.read
        tax
        nga.showAt os
        nga.read
        tax
        nga.showAt ext
        rts
.endp
.export ngaRestore
.proc ngaRestore, root
        nga.show os, 0
        nga.show ext, 0
        rts
.endp
.export ngaLoadUnit, ngaLoadMap
.section root
ngaLoadUnit
        .res 1
.ends
.proc ngaLoadMap, root
        ldx ngaLoadUnit
        nga.showAt ext
        rts
.endp
.export ngaTransform
.proc ngaTransform
        cmp #0
        bne @not0
        jmp portbCopy
@not0
        brk
.endp

Memory map

  1. intro145 zero page, 16276 bytes
  2. level145 zero page, 16672 bytes
AddressBytesSectionModuleKindPhasesWaits
$0000–$007F128osZeroossection0..1
$0080–$00823portbPtrportbsection0..1
$0083–$00842ngaDstnga.transitiontemporary0..1
$0083–$00842ngaPtrnga.transitiontemporary0..1
$0083–$00842portbDstportbtemporary0..1
$0083–$00831showScreen.__0leftruntemporary0..1
$0085–$00862ngaOffsetnga.transitiontemporary0..1
$0085–$00862ngaValuenga.transitiontemporary0..1
$0085–$00862portbSizeportbtemporary0..1
$0087–$00871ngaUnitnga.transitiontemporary0..1
$0087–$00871portbRunportbtemporary0..1
$0088–$00892ngaEntrynga.transitiontemporary0..1
$008A–$008B2ngaFramePosnga.transitiontemporary0..1
$008C–$008C1ngaWantednga.transitiontemporary0..1
$008D–$008D1ngaCountnga.transitiontemporary0..1
$008E–$008E1ngaFrameUnitnga.transitiontemporary0..1
$008F–$00902titlenga.slotssection0..1
$0200–$06FF1280osRamossection0..1
$2000–$20045portbValuesportbsection0..1
$2005–$201012portbSelectportbproc0..1
$2011–$202C28portbOpenStreamportbproc0..1
$202D–$204222portbReadByteportbproc0..1
$2043–$205317portbNextUnitportbproc0..1
$2054–$20C5114portbCopyportbproc0..1
$20C6–$20DE25printLineprintproc0..1
$20DF–$20FA28showScreenrunproc0..1
$20FB–$21006introTitleintrosection0
$2101–$211117introTextintrosection0
$2112–$211B10introDrawintroproc0
$211C–$212712introStartintroproc0
$2141–$218973ngaTransitionnga.transitionproc0..1
$218A–$221A145ngaEnternga.transitionproc0..1
$221B–$222410ngaFrameOpennga.transitionproc0..1
$2225–$222E10ngaFrameSkipnga.transitionproc0..1
$222F–$222F1ngaCurrentPhasenga.cellsection0..1
$2230–$22323drawnga.slotssection0..1
$2233–$224C26ngaShowBasesnga.transformsproc0..1
$224D–$225C16ngaRestorenga.transformsproc0..1
$225D–$225D1ngaLoadUnitnga.transformssection0..1
$225E–$22647ngaLoadMapnga.transformsproc0..1
$2265–$226C8ngaTransformnga.transformsproc0..1
$4000–$403F64sparesharedsection0..1
$C000–$CFFF4096osRomLowossection0..1
$D800–$FFFF10240osRomHighossection0..1
$0083–$00842levelDraw.__0atleveltemporary1
$0085–$00851levelDraw.__1leftleveltemporary1
$20FB–$210410levelTitlelevelsection1bank 0 +$0020 (copy, 12 B)
$2105–$213A54levelDrawlevelproc1bank 0 +$002C (copy, 56 B)
$213B–$21406levelStartlevelproc1bank 0 +$0064 (copy, 8 B)
$4000–$4172371levelMaplevelsection1

The xex

1140 bytes, 13 segments, 0 unaccounted.

02container header
$2000–$2127 296 bytes at 2
$20001portb.portbValuesportb.asm
$20014portb.portbValuesportb.asm
$20053portb.portbSelectportb.asm
$20082portb.portbSelectportb.asm
$200A3portb.portbSelectportb.asm
$200D3portb.portbSelectportb.asm
$20101portb.portbSelectportb.asm
$20112portb.portbOpenStreamportb.asm
$20132portb.portbOpenStreamportb.asm
$20151portb.portbOpenStreamportb.asm
$20162portb.portbOpenStreamportb.asm
$20182portb.portbOpenStreamportb.asm
$201A2portb.portbOpenStreamportb.asm
$201C2portb.portbOpenStreamportb.asm
$201E3portb.portbOpenStreamportb.asm
$20211portb.portbOpenStreamportb.asm
$20222portb.portbOpenStreamportb.asm
$20242portb.portbOpenStreamportb.asm
$20262portb.portbOpenStreamportb.asm
$20281portb.portbOpenStreamportb.asm
$20293portb.portbOpenStreamportb.asm
$202C1portb.portbOpenStreamportb.asm
$202D2portb.portbReadByteportb.asm
$202F2portb.portbReadByteportb.asm
$20312portb.portbReadByteportb.asm
$20332portb.portbReadByteportb.asm
$20352portb.portbReadByteportb.asm
$20372portb.portbReadByteportb.asm
$20392portb.portbReadByteportb.asm
$203B2portb.portbReadByteportb.asm
$203D1portb.portbReadByteportb.asm
$203E3portb.portbReadByteportb.asm
$20411portb.portbReadByteportb.asm
$20421portb.portbReadByteportb.asm
$20432portb.portbNextUnitportb.asm
$20452portb.portbNextUnitportb.asm
$20471portb.portbNextUnitportb.asm
$20483portb.portbNextUnitportb.asm
$204B2portb.portbNextUnitportb.asm
$204D2portb.portbNextUnitportb.asm
$204F2portb.portbNextUnitportb.asm
$20512portb.portbNextUnitportb.asm
$20531portb.portbNextUnitportb.asm
$20542portb.portbCopyportb.asm
$20562portb.portbCopyportb.asm
$20583portb.portbCopyportb.asm
$205B2portb.portbCopyportb.asm
$205D3portb.portbCopyportb.asm
$20602portb.portbCopyportb.asm
$20622portb.portbCopyportb.asm
$20642portb.portbCopyportb.asm
$20662portb.portbCopyportb.asm
$20682portb.portbCopyportb.asm
$206A2portb.portbCopyportb.asm
$206C1portb.portbCopyportb.asm
$206D2portb.portbCopyportb.asm
$206F2portb.portbCopyportb.asm
$20712portb.portbCopyportb.asm
$20732portb.portbCopyportb.asm
$20752portb.portbCopyportb.asm
$20772portb.portbCopyportb.asm
$20792portb.portbCopyportb.asm
$207B2portb.portbCopyportb.asm
$207D2portb.portbCopyportb.asm
$207F2portb.portbCopyportb.asm
$20812portb.portbCopyportb.asm
$20831portb.portbCopyportb.asm
$20842portb.portbCopyportb.asm
$20862portb.portbCopyportb.asm
$20881portb.portbCopyportb.asm
$20892portb.portbCopyportb.asm
$208B2portb.portbCopyportb.asm
$208D2portb.portbCopyportb.asm
$208F2portb.portbCopyportb.asm
$20912portb.portbCopyportb.asm
$20932portb.portbCopyportb.asm
$20953portb.portbCopyportb.asm
$20981portb.portbCopyportb.asm
$20991portb.portbCopyportb.asm
$209A2portb.portbCopyportb.asm
$209C2portb.portbCopyportb.asm
$209E2portb.portbCopyportb.asm
$20A02portb.portbCopyportb.asm
$20A21portb.portbCopyportb.asm
$20A31portb.portbCopyportb.asm
$20A42portb.portbCopyportb.asm
$20A62portb.portbCopyportb.asm
$20A82portb.portbCopyportb.asm
$20AA2portb.portbCopyportb.asm
$20AC1portb.portbCopyportb.asm
$20AD2portb.portbCopyportb.asm
$20AF2portb.portbCopyportb.asm
$20B12portb.portbCopyportb.asm
$20B32portb.portbCopyportb.asm
$20B52portb.portbCopyportb.asm
$20B72portb.portbCopyportb.asm
$20B92portb.portbCopyportb.asm
$20BB2portb.portbCopyportb.asm
$20BD2portb.portbCopyportb.asm
$20BF3portb.portbCopyportb.asm
$20C23portb.portbCopyportb.asm
$20C51portb.portbCopyportb.asm
$20C63print.printLineprint.asm
$20C93print.printLineprint.asm
$20CC3print.printLineprint.asm
$20CF2print.printLineprint.asm
$20D13print.printLineprint.asm
$20D42print.printLineprint.asm
$20D63print.printLineprint.asm
$20D92print.printLineprint.asm
$20DB3print.printLineprint.asm
$20DE1print.printLineprint.asm
$20DF2run.showScreenrun.asm
$20E12run.showScreenrun.asm
$20E32run.showScreenrun.asm
$20E52run.showScreenrun.asm
$20E72run.showScreenrun.asm
$20E92run.showScreenrun.asm
$20EB3run.showScreenrun.asm
$20EE2run.showScreenrun.asm
$20F02run.showScreenrun.asm
$20F22run.showScreenrun.asm
$20F43run.showScreenrun.asm
$20F73run.showScreenrun.asm
$20FA1run.showScreenrun.asm
$20FB6intro.introTitleintro.asm
$21018intro.introTextintro.asm
$21098intro.introTextintro.asm
$21111intro.introTextintro.asm
$21122intro.introDrawintro.asm
$21142intro.introDrawintro.asm
$21162intro.introDrawintro.asm
$21183intro.introDrawintro.asm
$211B1intro.introDrawintro.asm
$211C3intro.introStartintro.asm
$211F9intro.introStartintro.asm
$2141–$222F 239 bytes at 302
$21411nga.transition.ngaTransitiontransition.asm
$21422nga.transition.ngaTransitiontransition.asm
$21441nga.transition.ngaTransitiontransition.asm
$21452nga.transition.ngaTransitiontransition.asm
$21472nga.transition.ngaTransitiontransition.asm
$21492nga.transition.ngaTransitiontransition.asm
$214B2nga.transition.ngaTransitiontransition.asm
$214D1nga.transition.ngaTransitiontransition.asm
$214E2nga.transition.ngaTransitiontransition.asm
$21502nga.transition.ngaTransitiontransition.asm
$21522nga.transition.ngaTransitiontransition.asm
$21541nga.transition.ngaTransitiontransition.asm
$21552nga.transition.ngaTransitiontransition.asm
$21572nga.transition.ngaTransitiontransition.asm
$21592nga.transition.ngaTransitiontransition.asm
$215B2nga.transition.ngaTransitiontransition.asm
$215D2nga.transition.ngaTransitiontransition.asm
$215F2nga.transition.ngaTransitiontransition.asm
$21611nga.transition.ngaTransitiontransition.asm
$21622nga.transition.ngaTransitiontransition.asm
$21642nga.transition.ngaTransitiontransition.asm
$21663nga.transition.ngaTransitiontransition.asm
$21692nga.transition.ngaTransitiontransition.asm
$216B2nga.transition.ngaTransitiontransition.asm
$216D1nga.transition.ngaTransitiontransition.asm
$216E2nga.transition.ngaTransitiontransition.asm
$21702nga.transition.ngaTransitiontransition.asm
$21722nga.transition.ngaTransitiontransition.asm
$21742nga.transition.ngaTransitiontransition.asm
$21762nga.transition.ngaTransitiontransition.asm
$21783nga.transition.ngaTransitiontransition.asm
$217B1nga.transition.ngaTransitiontransition.asm
$217C2nga.transition.ngaTransitiontransition.asm
$217E2nga.transition.ngaTransitiontransition.asm
$21801nga.transition.ngaTransitiontransition.asm
$21812nga.transition.ngaTransitiontransition.asm
$21832nga.transition.ngaTransitiontransition.asm
$21851nga.transition.ngaTransitiontransition.asm
$21862nga.transition.ngaTransitiontransition.asm
$21882nga.transition.ngaTransitiontransition.asm
$218A3nga.transition.ngaEntertransition.asm
$218D3nga.transition.ngaEntertransition.asm
$21902nga.transition.ngaEntertransition.asm
$21923nga.transition.ngaEntertransition.asm
$21952nga.transition.ngaEntertransition.asm
$21973nga.transition.ngaEntertransition.asm
$219A2nga.transition.ngaEntertransition.asm
$219C2nga.transition.ngaEntertransition.asm
$219E3nga.transition.ngaEntertransition.asm
$21A12nga.transition.ngaEntertransition.asm
$21A32nga.transition.ngaEntertransition.asm
$21A53nga.transition.ngaEntertransition.asm
$21A83nga.transition.ngaEntertransition.asm
$21AB2nga.transition.ngaEntertransition.asm
$21AD3nga.transition.ngaEntertransition.asm
$21B02nga.transition.ngaEntertransition.asm
$21B23nga.transition.ngaEntertransition.asm
$21B52nga.transition.ngaEntertransition.asm
$21B73nga.transition.ngaEntertransition.asm
$21BA2nga.transition.ngaEntertransition.asm
$21BC3nga.transition.ngaEntertransition.asm
$21BF2nga.transition.ngaEntertransition.asm
$21C13nga.transition.ngaEntertransition.asm
$21C41nga.transition.ngaEntertransition.asm
$21C52nga.transition.ngaEntertransition.asm
$21C73nga.transition.ngaEntertransition.asm
$21CA2nga.transition.ngaEntertransition.asm
$21CC2nga.transition.ngaEntertransition.asm
$21CE2nga.transition.ngaEntertransition.asm
$21D03nga.transition.ngaEntertransition.asm
$21D31nga.transition.ngaEntertransition.asm
$21D42nga.transition.ngaEntertransition.asm
$21D62nga.transition.ngaEntertransition.asm
$21D83nga.transition.ngaEntertransition.asm
$21DB2nga.transition.ngaEntertransition.asm
$21DD3nga.transition.ngaEntertransition.asm
$21E03nga.transition.ngaEntertransition.asm
$21E33nga.transition.ngaEntertransition.asm
$21E62nga.transition.ngaEntertransition.asm
$21E82nga.transition.ngaEntertransition.asm
$21EA2nga.transition.ngaEntertransition.asm
$21EC3nga.transition.ngaEntertransition.asm
$21EF2nga.transition.ngaEntertransition.asm
$21F13nga.transition.ngaEntertransition.asm
$21F42nga.transition.ngaEntertransition.asm
$21F63nga.transition.ngaEntertransition.asm
$21F92nga.transition.ngaEntertransition.asm
$21FB3nga.transition.ngaEntertransition.asm
$21FE2nga.transition.ngaEntertransition.asm
$22002nga.transition.ngaEntertransition.asm
$22022nga.transition.ngaEntertransition.asm
$22042nga.transition.ngaEntertransition.asm
$22061nga.transition.ngaEntertransition.asm
$22072nga.transition.ngaEntertransition.asm
$22092nga.transition.ngaEntertransition.asm
$220B2nga.transition.ngaEntertransition.asm
$220D3nga.transition.ngaEntertransition.asm
$22103nga.transition.ngaEntertransition.asm
$22132nga.transition.ngaEntertransition.asm
$22153nga.transition.ngaEntertransition.asm
$22183nga.transition.ngaEntertransition.asm
$221B2nga.transition.ngaFrameOpentransition.asm
$221D2nga.transition.ngaFrameOpentransition.asm
$221F2nga.transition.ngaFrameOpentransition.asm
$22213nga.transition.ngaFrameOpentransition.asm
$22241nga.transition.ngaFrameOpentransition.asm
$22251nga.transition.ngaFrameSkiptransition.asm
$22262nga.transition.ngaFrameSkiptransition.asm
$22282nga.transition.ngaFrameSkiptransition.asm
$222A2nga.transition.ngaFrameSkiptransition.asm
$222C2nga.transition.ngaFrameSkiptransition.asm
$222E1nga.transition.ngaFrameSkiptransition.asm
$222F1nga.cell.ngaCurrentPhase
$008F–$0090 2 bytes at 545
$008F2nga.slots.titlerun.asm
$2230–$225C 45 bytes at 551
$22303nga.slots.drawrun.asm
$22333nga.transforms.ngaShowBasestransforms.asm
$22361nga.transforms.ngaShowBasestransforms.asm
$223714nga.transforms.ngaShowBasestransforms.asm
$22453nga.transforms.ngaShowBasestransforms.asm
$22481nga.transforms.ngaShowBasestransforms.asm
$22493nga.transforms.ngaShowBasestransforms.asm
$224C1nga.transforms.ngaShowBasestransforms.asm
$224D10nga.transforms.ngaRestoretransforms.asm
$22575nga.transforms.ngaRestoretransforms.asm
$225C1nga.transforms.ngaRestoretransforms.asm
$225E–$226C 15 bytes at 600
$225E3nga.transforms.ngaLoadMaptransforms.asm
$22613nga.transforms.ngaLoadMaptransforms.asm
$22641nga.transforms.ngaLoadMaptransforms.asm
$22652nga.transforms.ngaTransformtransforms.asm
$22672nga.transforms.ngaTransformtransforms.asm
$22693nga.transforms.ngaTransformtransforms.asm
$226C1nga.transforms.ngaTransformtransforms.asm
$225D–$225D 1 bytes at 619
$225D1nga.transforms.ngaLoadUnittransforms.asm
$02E2–$02E3 2 bytes at 624
$02E22initad
$4000–$406B 108 bytes at 630
$400064shared.spareshared.asm
$404044storage image
$225D–$225D 1 bytes at 742
$225D1nga.transforms.ngaLoadUnittransforms.asm
$02E2–$02E3 2 bytes at 747
$02E22initad
$4000–$4172 371 bytes at 753
$400064shared.spareshared.asm
$4040307storage image
$02E2–$02E3 2 bytes at 1128
$02E22initad
$02E0–$02E1 2 bytes at 1134
$02E02runad