add PowerISA decoder #7

Merged
programmerjake merged 35 commits from programmerjake/cpu:add-powerisa-decoder into master 2026-01-29 02:22:14 +00:00
2 changed files with 15009 additions and 14926 deletions
Showing only changes of commit 5e9d0957f6 - Show all commits

File diff suppressed because it is too large Load diff

View file

@ -107,6 +107,7 @@ fn insn_double(
pub fn test_cases() -> Vec<TestCase> {
let mut retval = Vec::new();
branch::test_cases_book_i_2_4_branch(&mut retval);
fixed_point_arithmetic::test_cases_book_i_3_3_9_fixed_point_arithmetic(&mut retval);
fixed_point_compare::test_cases_book_i_3_3_10_fixed_point_compare(&mut retval);
fixed_point_logical::test_cases_book_i_3_3_13_fixed_point_logical(&mut retval);
@ -114,6 +115,5 @@ pub fn test_cases() -> Vec<TestCase> {
&mut retval,
);
prefixed_no_operation::test_cases_book_i_3_3_20_prefixed_no_operation(&mut retval);
branch::test_cases_book_i_2_4_branch(&mut retval);
retval
}