forked from Henne/Bright-Eyes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
igor-zateryukin
committed
Nov 6, 2021
1 parent
da8d9fb
commit 3dedd03
Showing
14 changed files
with
516 additions
and
520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,13 @@ | ||
#define DOSBOX_SCHICK_H | ||
#define DOSBOX_SCHWEIF_H | ||
#define DOSBOX_masm2c_H | ||
|
||
#ifdef DOSBOX_CUSTOM | ||
|
||
#ifdef DOSBOX_SCHICK_H | ||
/* prototypes for Execution operations */ | ||
bool init_schick(char *, unsigned short, unsigned short, unsigned short); | ||
void exit_schick(unsigned char); | ||
bool masm2c_init(char *, unsigned short, unsigned short, unsigned short); | ||
void masm2c_exit(unsigned char); | ||
|
||
/* prototypes for CPU operations */ | ||
int schick_callf(unsigned, unsigned); | ||
int schick_calln16(unsigned); | ||
#else /* DOSBOX_SCHICK_H */ | ||
/* prototypes for Execution operations */ | ||
inline bool init_schick(char *, unsigned short, unsigned short, unsigned short) { return false; }; | ||
inline void exit_schick(unsigned char) {}; | ||
|
||
/* prototypes for CPU operations */ | ||
inline int schick_callf(unsigned, unsigned) {return 0;}; | ||
inline int schick_calln16(unsigned) {return 0;}; | ||
#endif /* DOSBOX_SCHICK_H */ | ||
|
||
|
||
#ifdef DOSBOX_SCHWEIF_H | ||
/* prototypes for Execution operations */ | ||
bool schweif_init(char *, unsigned short, unsigned short, unsigned short); | ||
void schweif_exit(unsigned char); | ||
|
||
/* prototypes for CPU operations */ | ||
int schweif_callf(unsigned, unsigned); | ||
int schweif_calln(unsigned); | ||
#else /* DOSBOX_SCHWEIF_H */ | ||
static inline bool schweif_init(char *, unsigned short, unsigned short, unsigned short) { return false; } | ||
static inline void schweif_exit(unsigned char) {} | ||
static inline int schweif_callf(unsigned, unsigned) {return 0;} | ||
static inline int schweif_calln(unsigned) {return 0;} | ||
#endif /* DOSBOX_SCHWEIF_H */ | ||
int masm2c_callf(unsigned, unsigned); | ||
int masm2c_calln16(unsigned); | ||
|
||
#endif /* DOSBOX_CUSTOM */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.