/[VRac]/M6502/config.h
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /M6502/config.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 82 - (hide annotations)
Wed Aug 1 21:40:17 2007 UTC (16 years, 9 months ago) by dpavlin
File MIME type: text/plain
File size: 533 byte(s)
begin refactoring into proper XS module (really need to do this so I can handle SDL event loop)
1 dpavlin 29 // make perlxsi.c happy
2     EXTERN_C void xs_init (pTHX);
3 dpavlin 30
4     // which module to bootstrap
5 dpavlin 80 #define EMU_START "use blib; use Arch;"
6 dpavlin 33
7     // do we want to dump our C debug?
8 dpavlin 81 #define DEBUGF 1
9 dpavlin 34
10 dpavlin 36 // do we wont to dump registars?
11 dpavlin 81 #define DUMP_R 1
12 dpavlin 39
13 dpavlin 82 #if DEBUGF
14     #define debugf(x) do { \
15     PerlIO_stdoutf("#> "); \
16     PerlIO_stdoutf x ; \
17     PerlIO_stdoutf("\n"); \
18     } while (0)
19     #else
20     #define debugf(x)
21     #endif
22    
23     #if 1
24     #define dump_R printf("# PC: %04x A:%02x P:%02x X:%02x Y:%02x S:%02x\n", R->PC.W, R->A, R->P, R->X, R->Y, R->S );
25     #else
26     #define dump_R
27     #endif
28    

  ViewVC Help
Powered by ViewVC 1.1.26