Changes

Jump to: navigation, search

Arnold V Specs Revised

15 bytes removed, 17:13, 18 July 2020
/* 8255 */
This will cause FF to be output and an invalid PSG register to be selected:
[code] ld bc,&f400 out (c),c ld bc,&f6c0 out (c),c ld bc,&f792 out (c),c ;; At this point FF appears in PPI port A. This selects an invalid PSG register, FF is returned when attempting to read this register.[/code]
Therefore use this:
[code] ld bc,&f400 out (c),c ld bc,&f6c0 out (c),c ld bc,&f600 ;;; << use inactive out (c),c ld bc,&f792 out (c),c[/code]
===Automatic feeding of sound generator===
2,541
edits