dsp3.hpp 208 B

123456789101112
  1. class DSP3 : public Memory {
  2. public:
  3. void init();
  4. void enable();
  5. void power();
  6. void reset();
  7. uint8 read (unsigned addr);
  8. void write(unsigned addr, uint8 data);
  9. };
  10. extern DSP3 dsp3;