mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-24 12:30:05 +00:00
2bd717e293
The following fixes and changes have been made - Better Grackle emulation (though far from perfect) - OpenPIC write/read fixes - DAVBus Stubs - Started splitting functionality from the main routine, to slowly make way for a GUI-based version - Added a new until command argument - Fixed an entry in the floating point instruction dispatch table - CMakeLists.txt added
23 lines
482 B
C
23 lines
482 B
C
//DingusPPC - Prototype 5bf2
|
|
//Written by divingkatae
|
|
//(c)2018-20 (theweirdo)
|
|
//Please ask for permission
|
|
//if you want to distribute this.
|
|
//(divingkatae#1017 on Discord)
|
|
|
|
//Functionality for the DAVBus (Sound Bus + Screamer?)
|
|
|
|
#ifndef DAVBUS_H_
|
|
#define DAVBUS_H_
|
|
|
|
extern uint32_t davbus_address;
|
|
extern uint32_t davbus_write_word;
|
|
extern uint32_t davbus_read_word;
|
|
|
|
extern void davbus_init();
|
|
extern void davbus_read();
|
|
extern void davbus_write();
|
|
|
|
#endif
|
|
|