Zack Buhman 7debad83b9 add support for non-FPU/UBC/MMU/cache SH4 instructions
Previously, ast transformations were performed informally as ad-hoc
modifications to the generated C source code. In this commit, the
same transformations are performed by rewriting the ast prior to code
generation time.

The most significant new transformer is transform_assignment_list.
This transforms assignments such as:

  a, b, c = f(b, c, d)

To:

  a = f(&b, &c, d)

The former syntax is used frequently in the manual's description of
FPU-related instructions.
2024-04-22 20:59:34 +08:00
2024-04-09 09:57:08 +08:00
2024-04-09 09:57:08 +08:00
2024-04-09 09:57:08 +08:00
2024-04-09 09:57:08 +08:00
Description
No description provided
359 KiB
Languages
C 65.7%
Python 32.6%
Assembly 1.5%
Makefile 0.2%