Initial Commit

This commit is contained in:
ikari
2009-07-02 11:14:04 +02:00
commit e121b34cf4
60 changed files with 9256 additions and 0 deletions

10
src/memory.h Normal file
View File

@@ -0,0 +1,10 @@
// insert cool lengthy disclaimer here
// memory.h
#ifndef MEMORY_H
#define MEMORY_H
uint32_t load_rom(char* filename);
uint32_t load_sram(char* filename);
void save_sram(char* filename, uint32_t sram_size);
uint32_t calc_sram_crc(uint32_t size);
#endif