diff options
Diffstat (limited to 'memoryAccess.h')
-rw-r--r-- | memoryAccess.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/memoryAccess.h b/memoryAccess.h index 048ae86..8f593fd 100644 --- a/memoryAccess.h +++ b/memoryAccess.h @@ -9,9 +9,10 @@ class memoryAccess { public: void init(); + void write(int location, byte val); + void commit(); bool writeAscii(String varName, String data); String readAscii(String varName); - void commit(); void dump(); private: struct memoryAdress getAdress(String varName); |