| 202 | u32 readReg(JASRegisterParam::RegID regId) { return mRegisterParam.read(regId); } |
| 203 | void writeReg(JASRegisterParam::RegID regId, u32 p2) { mRegisterParam.write(regId, p2); } |
| 204 | bool checkPort(u32 port) const { return mTrackPort.checkExport(port); } |
| 205 | bool checkPortIn(u32 port) const { return mTrackPort.checkImport(port); } |
| 206 | |
| 207 | void setAutoDelete(bool del) { |
no test coverage detected