Search
lxdream.org :: lxdream/src/dream.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/dream.h
changeset 220:f72f8a7dff88
prev180:e6dcf9b65658
next265:5daf59b7f31b
author nkeynes
date Wed Jan 03 09:01:51 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Implement the main CRTC registers, along with the sync status register.
Timings are now pretty close to the real thing.
file annotate diff log raw
1.1 --- a/src/dream.h Sun Jul 02 04:59:00 2006 +0000
1.2 +++ b/src/dream.h Wed Jan 03 09:01:51 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: dream.h,v 1.10 2006-07-02 04:59:00 nkeynes Exp $
1.6 + * $Id: dream.h,v 1.11 2006-09-12 08:36:09 nkeynes Exp $
1.7 *
1.8 * Miscellaneous application-wide declarations (mainly logging atm)
1.9 *
1.10 @@ -112,7 +112,9 @@
1.11
1.12 void fwrite_string( char *s, FILE *f );
1.13 int fread_string( char *s, int maxlen, FILE *f );
1.14 - void fwrite_dump( unsigned char *buf, unsigned int length, FILE *f );
1.15 +void fwrite_dump( unsigned char *buf, unsigned int length, FILE *f );
1.16 +void fwrite_dump32( unsigned int *buf, unsigned int length, FILE *f );
1.17 +void fwrite_dump32v( unsigned int *buf, unsigned int length, int wordsPerLine, FILE *f );
1.18
1.19 #ifndef max
1.20 #define max(a,b) ( (a) > (b) ? (a) : (b) )
.