Booting on a real MicroVAX 3100/40 via netboot and on simh emulating a micrvax 3900. Doesn't fully work, lots of stuff is stubbed out, but it starts to run and hits unimplemented bits and stops.
11 lines
163 B
ArmAsm
11 lines
163 B
ArmAsm
.text
|
|
|
|
.globl rom_putchar
|
|
.type rom_putchar@function
|
|
rom_putchar:
|
|
.word 0x0004 # save r2
|
|
movl 4(%ap), %r2
|
|
jsb *rom_putchar_addr
|
|
ret
|
|
|