| 127 | } |
| 128 | template <typename T> |
| 129 | void write_cmd_handler(ACE_scanner<T> *scanner, T val_to_write) { |
| 130 | |
| 131 | /* |
| 132 | * parse value to write and write to all addresses |
| 133 | * in the current scan |
| 134 | * */ |
| 135 | |
| 136 | scanner->write_val_to_current_scan_results(val_to_write); |
| 137 | } |
| 138 | |
| 139 | template <typename T> |
| 140 | void readat_cmd_handler(proc_rw<T> *process_rw, ADDR address) { |
nothing calls this directly
no test coverage detected