11 lines
133 B
C
11 lines
133 B
C
|
class EEPROM {
|
||
|
public:
|
||
|
void write(int address, int data) {
|
||
|
|
||
|
}
|
||
|
|
||
|
int read(int address) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
} EEPROM;
|