| 1281 | return nd.val; |
| 1282 | } |
| 1283 | static uae_u32 readhex(TCHAR **c, bool *err) |
| 1284 | { |
| 1285 | int size; |
| 1286 | struct numdata nd; |
| 1287 | readnum(&nd, c, &size, '$', err); |
| 1288 | return nd.val; |
| 1289 | } |
| 1290 | static uae_u32 readbin(TCHAR **c, bool *err) |
| 1291 | { |
| 1292 | int size; |
no test coverage detected