4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PC-88 フロッピーIPLサンプル

4
Posted at
ipl.asm
; z88dk / PC-8801 mon
; z80asm -b -l ipl.asm

        org     $c000
start:
        ld      hl, msg
        ld      de, $f3c8
        ld      bc, 12
        ldir
.loop
        jr      loop

msg:    defm    "hello, world"

ドライブ1にN88-BASICシステムディスクをセットして起動する。ドライブ2にデータディスクを作成する。

mon
フィルメモリで領域をクリア
h]fc000,c0ff,0
t88ファイルを読み込むかEコマンドなどでIPLを入力する。
CTRL-W(ライトディスク)コマンドでドライブ2、サーフェス0、トラック0、セクタ1にIPLを書き込む。
h]^w2,0,0,1,c000,c0ff
ipl1.png

ドライブ1に作成したIPLディスクをセットして起動する。
ipl2.png

4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?