summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-12-09 09:48:48 -0800
committerMichael Pavone <pavone@retrodev.com>2016-12-09 09:48:48 -0800
commit818a3ef482b96c0a963bb515291944346586f106 (patch)
treea13839316062ed0986e1b0b8317c6df3e74d7610 /util.h
parentaaca957565a13e9f2c6ab5ae085d7c8fb6c0fa85 (diff)
WIP split of ROM loading/argument parsing from Genesis emulation code. Compiles and doesn't crash, but nothing works. Still a few too many globals as well.
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/util.h b/util.h
index 1cfaeda..7029d16 100644
--- a/util.h
+++ b/util.h
@@ -21,6 +21,8 @@ typedef struct {
char * alloc_concat(char const * first, char const * second);
//Allocates a new string containing the concatenation of the strings pointed to by parts
char * alloc_concat_m(int num_parts, char const ** parts);
+//Byteswaps a ROM image in memory
+void byteswap_rom(int filesize, uint16_t *cart);
//Returns the size of a file using fseek and ftell
long file_size(FILE * f);
//Strips whitespace and non-printable characters from the beginning and end of a string