initial commit
This commit is contained in:
commit
9ed1b679c0
9 changed files with 2040 additions and 0 deletions
1542
src/lib.rs
Normal file
1542
src/lib.rs
Normal file
File diff suppressed because it is too large
Load diff
10
src/main.rs
Normal file
10
src/main.rs
Normal 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue