.

ROMSLOT.h

Committer:
va009039
Date:
2016-04-09
Revision:
2:ecbff7f1e453
Parent:
1:dee9fae0c0c4

File content as of revision 2:ecbff7f1e453:

// ROMSLOT.h 2016/4/9
#include "mbed.h"

class ROMSLOT {
public:
    ROMSLOT();
    uint32_t New(uint32_t size);
    bool Write(uint32_t addr, const uint8_t* buf, uint32_t size);

private:
    uint32_t base;
};