mirror of
https://github.com/extremscorner/not64.git
synced 2025-04-02 10:52:37 -04:00
11 lines
259 B
C
11 lines
259 B
C
/* Invalid_Code.h - Uses 1/8th the memory as the char hash table
|
|
by Mike Slegeir for Mupen64-GC
|
|
*/
|
|
|
|
#ifndef INVALID_CODE_H
|
|
#define INVALID_CODE_H
|
|
|
|
int inline invalid_code_get(int block_num);
|
|
void inline invalid_code_set(int block_num, int value);
|
|
|
|
#endif
|