Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
udo-munk committed May 18, 2024
1 parent 128c532 commit 391a380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions memsim.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// 18-MAY-2024 Release 1.4 read 8080 code from a file on SD into FRAM
//

int load_file(char *);
void load_file(char *);

// 64 KB unbanked memory in FRAM
// we want hardware SPI, the 2 and 4 MBit modules can be clocked
Expand Down Expand Up @@ -43,7 +43,7 @@ static inline void memwrt(WORD addr, BYTE data)
fram.write8((uint32_t) addr, data);
}

int load_file(char *name)
void load_file(char *name)
{
uint32_t i = 0;
int c;
Expand Down

0 comments on commit 391a380

Please sign in to comment.