initial commit

This commit is contained in:
Jacob Lifshay 2026-03-30 19:41:36 -07:00
commit 9ed1b679c0
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ
9 changed files with 2040 additions and 0 deletions

1542
src/lib.rs Normal file

File diff suppressed because it is too large Load diff

10
src/main.rs Normal file
View file

@ -0,0 +1,10 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// See Notices.txt for copyright information
use compile_qemu_for_decoder::parse_qemu_ppc64_softmmu;
use inkwell::targets::{InitializationConfig, Target};
fn main() -> eyre::Result<()> {
Target::initialize_power_pc(&InitializationConfig::default());
parse_qemu_ppc64_softmmu("libqemu-ppc64-softmmu.bc", 10, 10)
}