| 1125 | return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3]); |
| 1126 | } |
| 1127 | static uae_u16 gw(uae_u8 *p) |
| 1128 | { |
| 1129 | return (p[0] << 8) | (p[1]); |
| 1130 | } |
| 1131 | |
| 1132 | static bool loadcodefiledata(struct debugcodefile *cf) |
| 1133 | { |
no outgoing calls
no test coverage detected