mbed_slave_full
Embed:
(wiki syntax)
Show/hide line numbers
memory.h
00001 #ifndef MEMORY_HEADER 00002 #define MEMORY_HEADER 00003 00004 class Memory { 00005 00006 public: 00007 const static int MEMORY_SIZE = 32; 00008 00009 private: 00010 int memory[MEMORY_SIZE]; 00011 00012 public: 00013 Memory(); 00014 void reset(); 00015 void set(int address, int value); 00016 int get(int address); 00017 void print(); 00018 }; 00019 00020 00021 #endif
Generated on Sat Aug 6 2022 19:26:06 by
1.7.2