Update README.md

This commit is contained in:
ArthurFerreira2 2021-06-25 00:09:17 +02:00 committed by GitHub
parent a531330d0a
commit 7ff33c4a10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ You are expected to provide the functions to handle read and writes to memory (R
They have to comply with these prototypes :
```C
extern uint8_t readMem(uint16_t address);
extern void writeMem(uint16_t address, uint8_t value);
uint8_t readMem(uint16_t address);
void writeMem(uint16_t address, uint8_t value);
```
finnaly, you can import the variable `ticks` (extern ticks) into your code - it holds the accumulated clock cycles since start.