| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-20 | Merge pull request #311 from lioncash/usada | bunnei | |
| armemu: Implement USAD8 and USADA8 | |||
| 2014-12-20 | Merge pull request #313 from lioncash/smlsd | bunnei | |
| armemu: Implement SMLSD | |||
| 2014-12-20 | Merge pull request #314 from lioncash/qsax-qasx | bunnei | |
| armemu: Implement QASX and QSAX | |||
| 2014-12-19 | Merge pull request #294 from lioncash/var | bunnei | |
| armemu: Narrow the scope of some variables in handle_v6_insn | |||
| 2014-12-19 | Merge pull request #305 from lioncash/paren | bunnei | |
| armemu: Get rid of bitwise parenthesis warnings | |||
| 2014-12-19 | armemu: Implement QASX and QSAX | Lioncash | |
| 2014-12-19 | armemu: Implement SMLSD | Lioncash | |
| 2014-12-19 | dyncom: Implement UMAAL | Lioncash | |
| 2014-12-18 | armemu: Implement USAD8 and USADA8 | Lioncash | |
| 2014-12-18 | armemu: Fix SSAT16 | Lioncash | |
| The lower-bound would never be negative like it should | |||
| 2014-12-18 | armemu: Clean up naming and formatting for SSAT16 | Lioncash | |
| 2014-12-18 | Merge pull request #304 from lioncash/sflags | bunnei | |
| armemu: Set GE flags properly for SSUB16, SADD16, SSAX, and SASX. | |||
| 2014-12-18 | armemu: Fix lower-bounds clamping for USAT16 | Lioncash | |
| 2014-12-18 | armemu: More concise names for USAT16-related variables | Lioncash | |
| 2014-12-18 | armemu: Get rid of bitwise parenthesis warnings | Lioncash | |
| 2014-12-18 | armemu: Set GE flags correctly for SSUB16, SADD16, SSAX, and SASX. | Lioncash | |
| 2014-12-18 | Merge pull request #299 from lioncash/join | bunnei | |
| Combine SSUB16, SADD16, SASX, and SSAX. | |||
| 2014-12-17 | Merge pull request #298 from lioncash/flags | bunnei | |
| armemu: Unset GE flags for UADD8 if results are < 0x100 | |||
| 2014-12-17 | Merge pull request #295 from lioncash/umaal | bunnei | |
| armemu: Implement UMAAL | |||
| 2014-12-17 | armemu: Combine SSUB16, SADD16, SASX, and SSAX. | Lioncash | |
| 2014-12-17 | Merge pull request #292 from lioncash/backports | bunnei | |
| Backport more skyeye fixes from 3dmoo | |||
| 2014-12-17 | armemu: Unset GE flags for UADD8 if results are < 0x100 | Lioncash | |
| Reference manual states these must be set to zero if this case is true. | |||
| 2014-12-17 | armemu: Fix SSUB16 | Lioncash | |
| Broken from the same reason SADD16 was. The lo part of the result should only be constructed from the lo halfwords of rm and rn. The hi part of the result should only be constructed from the hi halfwords of rm and rn. | |||
| 2014-12-17 | Merge pull request #293 from lioncash/sops | bunnei | |
| armemu: Fix SADD16 | |||
| 2014-12-17 | Merge pull request #287 from lioncash/qaddsub16 | bunnei | |
| armemu: Join QADD16/QSUB16 and fix saturation clamping. | |||
| 2014-12-17 | armemu: Implement UMAAL | Lioncash | |
| 2014-12-17 | armemu: Narrow the scope of some variables in handle_v6_insn | Lioncash | |
| There's no reason to have these in the outer-most scope. | |||
| 2014-12-17 | armemu: Fix SADD16 | Lioncash | |
| The lo and hi parts of the result were being constructed as a result of hi and lo halfword intermixing from the rm and rn regs. However the lo part of the result should be constructed only from the lo halfwords of rm and rn, and the hi part of the result should only be constructed from the hi halfwords of rm and rn. | |||
| 2014-12-17 | armemu: Fix PKHTB | Normmatt | |
| 2014-12-17 | armemu: Implement REVSH | Normmatt | |
| 2014-12-17 | armemu: Fix UXTAB/UXTAH | Normmatt | |
| 2014-12-17 | armemu: Fix SXTAB | Normmatt | |
| 2014-12-17 | armemu: Fix SXTAH | Normmatt | |
| 2014-12-17 | Merge pull request #289 from lioncash/smops | bunnei | |
| Join SMUAD, SMUSD, and SMLAD ops. Also fix them as well. | |||
| 2014-12-16 | Merge pull request #290 from lioncash/vsub | bunnei | |
| armemu: Backport some VFP fixes from 3dmoo. | |||
| 2014-12-16 | armemu: Fix FTOUI NaN sign. | Normmatt | |
| 2014-12-16 | armemu: Fix FSUBS bug where NaN shouldn't be negated | Normmatt | |
| 2014-12-16 | armemu: Fix SMUAD, SMUSD, and SMLAD | Lioncash | |
| Wrong values were being multiplied together. | |||
| 2014-12-16 | armemu: Join SMUAD, SMUSD, and SMLAD | Lioncash | |
| 2014-12-16 | armemu: Fix lower-bound signed saturation clamping for QADD16/QSUB16. | Lioncash | |
| 2014-12-16 | armemu: Join QADD16 and QSUB16 together. | Lioncash | |
| The only difference between these ops is one adds and one subtracts. Everything is literally the same. | |||
| 2014-12-15 | armemu: Implement UXTAB16 | Lioncash | |
| 2014-12-14 | armemu: Fix UXTB16 | Lioncash | |
| Rotation bits are 10 and 11, not 9 and 10. | |||
| 2014-12-14 | Merge pull request #276 from lioncash/decrappify | bunnei | |
| Clean up armdefs.h a little. | |||
| 2014-12-14 | ARM: Pull some SkyEye fixes from 3dmoo. | bunnei | |
| 2014-12-14 | Clean up armdefs.h | Lioncash | |
| 2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | |
| 2014-12-08 | armemu: Fix SSAX | Lioncash | |
| 2014-12-08 | armemu: Fix SASX | Lioncash | |
| 2014-12-07 | armemu: Fix parenthesis warnings regarding bitwise ops | Lioncash | |
