| 2264 | return 0; |
| 2265 | } |
| 2266 | static uae_u32 REGPARAM2 ide_generic_lget (uaecptr addr) |
| 2267 | { |
| 2268 | struct ide_board *ide = getideboard(addr); |
| 2269 | if (ide) { |
| 2270 | uae_u32 v = ide_read_word(ide, addr) << 16; |
| 2271 | v |= ide_read_word(ide, addr + 2); |
| 2272 | return v; |
| 2273 | } |
| 2274 | return 0; |
| 2275 | } |
| 2276 | static uae_u32 REGPARAM2 ide_generic_wgeti(uaecptr addr) |
| 2277 | { |
| 2278 | struct ide_board *ide = getideboard(addr); |
nothing calls this directly
no test coverage detected