| 1473 | } |
| 1474 | |
| 1475 | static uae_u32 getrombase(int size) |
| 1476 | { |
| 1477 | if (size > 524288 * 3) |
| 1478 | return 0; |
| 1479 | if (size > 524288 * 2) { |
| 1480 | return 0xa00000; |
| 1481 | } else if (size > 524288 * 1) { |
| 1482 | return 0xa80000; |
| 1483 | } else { |
| 1484 | return 0xf80000; |
| 1485 | } |
| 1486 | } |
| 1487 | |
| 1488 | static void addsimplesymbol(const TCHAR *name, uae_u32 v, int type, int flags, int segmentid, int segmentnum) |
| 1489 | { |
no outgoing calls
no test coverage detected