LoginSignup
2
1

More than 5 years have passed since last update.

PC-88 機械語で文字出力

Last updated at Posted at 2018-07-21

参考
PC-8801 I/Oマップ

db 71           in      a, ($71)        ; 拡張ROMセレクト
f5              push    af
3e ff           ld      a, $ff          ; メインROM
d3 71           out     ($71), a

; putc
3e xx           ld      a, xx
df              rst     $18             ; OUTIO
f6 xx           or      xx
df              rst     $18

; puts
21 xx xx        ld      hl, xxxx
cd 50 55        call    $5550

f1              pop     af
d3 71           out     ($71), a
c9              ret

putc.png

puts.png

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1