mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 00:31:56 +00:00
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:
parent
84f5ffa426
commit
a3fa527378
4
compiler/res/prog8lib/c128/diskio.p8
Normal file
4
compiler/res/prog8lib/c128/diskio.p8
Normal file
@ -0,0 +1,4 @@
|
||||
%import shared_cbm_diskio
|
||||
|
||||
; No alterations here; everything is taken from the shared module.
|
||||
|
4
compiler/res/prog8lib/c64/diskio.p8
Normal file
4
compiler/res/prog8lib/c64/diskio.p8
Normal file
@ -0,0 +1,4 @@
|
||||
%import shared_cbm_diskio
|
||||
|
||||
; No alterations here; everything is taken from the shared module.
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user