mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 23:58:04 -04:00
initial import
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@2 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
2cadbd5e56
commit
cc68a136aa
341 changed files with 180839 additions and 0 deletions
24
cpu/Cyclone/Disa/Disa.h
Normal file
24
cpu/Cyclone/Disa/Disa.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
// Dave's Disa 68000 Disassembler
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if defined(ARM) || defined(GP32) || !defined (__WINS__)
|
||||
#define CPU_CALL
|
||||
#else
|
||||
#define CPU_CALL __fastcall
|
||||
#endif
|
||||
|
||||
extern unsigned int DisaPc;
|
||||
extern char *DisaText; // Text buffer to write in
|
||||
|
||||
extern unsigned short (CPU_CALL *DisaWord)(unsigned int a);
|
||||
int DisaGetEa(char *t,int ea,int size);
|
||||
|
||||
int DisaGet();
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // End of extern "C"
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue