mirror of
https://codeberg.org/hkzlab/TK2048.git
synced 2025-12-26 04:52:16 +11:00
Merged dii_refactoring, modularize code for 2.0
This commit is contained in:
parent
5d739383aa
commit
cfc455f1ca
37 changed files with 2101 additions and 249 deletions
23
src/master_func.s
Normal file
23
src/master_func.s
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
.rtmodel version,"1"
|
||||
.rtmodel core,"6502"
|
||||
|
||||
.extern dii_encode_gcr62_data
|
||||
.extern dii_power_on
|
||||
.extern dii_power_off
|
||||
.extern dii_head_reposition
|
||||
.extern dii_read_sector
|
||||
.extern dii_write_sector
|
||||
|
||||
.section functionTable,text
|
||||
|
||||
;;; Function table
|
||||
;;; Export some functions here to be used by modules
|
||||
__exported_func_table:
|
||||
.word dii_encode_gcr62_data
|
||||
.word dii_power_on
|
||||
.word dii_power_off
|
||||
.word dii_head_reposition
|
||||
.word dii_read_sector
|
||||
.word dii_write_sector
|
||||
|
||||
.public __exported_func_table
|
||||
Loading…
Add table
Add a link
Reference in a new issue