Kevin O'Connor | 7a558e4 | 2008-03-11 20:38:33 -0400 | [diff] [blame^] | 1 | Audit all sti/cli calls. Audit all call16 calls to make sure flags is |
| 2 | setup properly with respect to irqs. |
Kevin O'Connor | 44c631d | 2008-03-02 11:24:36 -0500 | [diff] [blame] | 3 | |
Kevin O'Connor | ed12849 | 2008-03-11 11:14:59 -0400 | [diff] [blame] | 4 | Audit statements where a 32bit intermediary changes meaning of a 16bit |
| 5 | comparison. |
| 6 | |
Kevin O'Connor | d111833 | 2008-03-02 23:26:09 -0500 | [diff] [blame] | 7 | Look into ways to reduce stack usage. For example, %esp, %ebp, %esi |
| 8 | (high bits), %edi (high bits) are already restored by the C code if |
| 9 | they're changed - they probably don't need to be backed up on entry. |
| 10 | |
Kevin O'Connor | 63dbcfb | 2008-03-01 22:17:07 -0500 | [diff] [blame] | 11 | Code assumes ebda segment is static - it doesn't read 0x40e. |
| 12 | |
| 13 | See if using an ld script for 16bit mode is a good idea. |
| 14 | |
Kevin O'Connor | b8aacb0 | 2008-03-01 14:56:07 -0500 | [diff] [blame] | 15 | The __call16 code does a long jump to the interrupt trampolines - this |
| 16 | is unnecessary. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 17 | |
| 18 | Fix makefiles so that they rebuild the required files automatically. |
| 19 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 20 | Cleanup setting of ES on GET/SET_BDA |
| 21 | |
| 22 | Make sure inline assembly isn't preventing inlining of calling |
| 23 | functions. |
| 24 | |
| 25 | Convert remaining parts of rombios.c to new code. |
| 26 | |
| 27 | Convert rombios32 and apm bios stuff to new code. |
| 28 | |
| 29 | Allow one to select adding 32 bit code to 0xf000 or in a separate |
| 30 | location. |
| 31 | |
| 32 | Try generating bios tables at compile time. |
| 33 | |
| 34 | Move e820 map generation to post time (just have e820 code copy pre |
| 35 | made tables back to user). |