Hi good afternoon.
I would please with asm a cpc-dsk formatting.
How is that
thank you.
greeting
Use BIOS (easiest):
http://www.cpctech.org.uk/docs/manual/s968se19.pdf
Use KL FIND COMMAND (&BCD4) to get the BIOS function, then use RST 3 to execute it.
ld hl,format_command call kl_find_command ret nc ld (format_cmd_data),hl ld a,c ld (format_cmd_data+2),a
rst 3 defw format_cmd_data
Direct to FDC (hardest):
http://www.cpcwiki.eu/index.php/765_FDC
The 765 FDC article lists FDC9216 as the data separator.
Wasn't it the SED9420?
Quote from: robcfg on 14:03, 27 November 16
The 765 FDC article lists FDC9216 as the data separator.
Wasn't it the SED9420?
I think there were more than 1 data separator used. The FDC9216 may have been a mistake. Please check the scanned pcbs.
Quote from: robcfg on 14:03, 27 November 16
The 765 FDC article lists FDC9216 as the data separator.
Wasn't it the SED9420?
FDC9229BT on DDI1
FDC9216 on 664 and early 6128
SED9420C on late 6128
make your choice :D
hello thanks.
greeting