move shared cbm diskio to its own file (c64/c128) so that pet/atari/neo targets give better error message when trying to import non existing diskio module there

This commit is contained in:
Irmen de Jong 2024-11-10 15:35:36 +01:00
parent 84f5ffa426
commit a3fa527378
3 changed files with 10 additions and 2 deletions

View File

@ -0,0 +1,4 @@
%import shared_cbm_diskio
; No alterations here; everything is taken from the shared module.

View File

@ -0,0 +1,4 @@
%import shared_cbm_diskio
; No alterations here; everything is taken from the shared module.

View File

@ -1,4 +1,4 @@
; C64/C128 disk drive I/O routines.
; shared CBM (C64/C128) disk drive I/O routines.
%import textio
%import conv
@ -6,7 +6,7 @@
%import syslib
diskio {
%option no_symbol_prefixing, ignore_unused
%option merge, no_symbol_prefixing, ignore_unused
const ubyte READ_IO_CHANNEL=12
const ubyte WRITE_IO_CHANNEL=13