mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
lm32: translation code helper
This patch adds translation helper functions. Signed-off-by: Michael Walle <michael@walle.cc> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
17c0fa3d57
commit
143e8951e4
2 changed files with 120 additions and 0 deletions
14
target-lm32/helper.h
Normal file
14
target-lm32/helper.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "def-helper.h"
|
||||
|
||||
DEF_HELPER_1(raise_exception, void, i32)
|
||||
DEF_HELPER_0(hlt, void)
|
||||
DEF_HELPER_1(wcsr_im, void, i32)
|
||||
DEF_HELPER_1(wcsr_ip, void, i32)
|
||||
DEF_HELPER_1(wcsr_jtx, void, i32)
|
||||
DEF_HELPER_1(wcsr_jrx, void, i32)
|
||||
DEF_HELPER_0(rcsr_im, i32)
|
||||
DEF_HELPER_0(rcsr_ip, i32)
|
||||
DEF_HELPER_0(rcsr_jtx, i32)
|
||||
DEF_HELPER_0(rcsr_jrx, i32)
|
||||
|
||||
#include "def-helper.h"
|
Loading…
Add table
Add a link
Reference in a new issue