mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
edf7a781fd
Many math instructions don't care about the difference between signed and unsigned operands and are thus specified using int, but need to be usable with uint. div is NOT mapped because there is a difference: 0x8000 / 2 (16-bit) is 0x4000 unsigned but 0xc000 signed, and 0x8000 / 0xfffe is 0 unsigned and 0x4000 signed. This means I'll need to add some more instructions. Not sure what to do about % and %% though as that's a lot of instructions (12). |
||
---|---|---|
.. | ||
doc | ||
include | ||
source | ||
test | ||
AUTHORS | ||
Makemodule.am | ||
TODO |