diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 14:20:20 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 14:20:20 +0100 |
commit | 95356a12e955ac8d42e8bb4632075bf13021e201 (patch) | |
tree | c97e38a0edf35a7edafdb3a08114902edb050676 /config.h | |
parent | Added Readme (diff) | |
download | CHIP8-Emulator-95356a12e955ac8d42e8bb4632075bf13021e201.tar.gz CHIP8-Emulator-95356a12e955ac8d42e8bb4632075bf13021e201.tar.bz2 CHIP8-Emulator-95356a12e955ac8d42e8bb4632075bf13021e201.zip |
Feature: Added basic rom loading
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..c70f65b --- /dev/null +++ b/config.h @@ -0,0 +1,6 @@ +#ifndef _CONFIG_H_ +#define _CONFIG_H_ + +#define INSTRUCTIONS_PER_SECOND 700 + +#endif |