aboutsummaryrefslogtreecommitdiff
path: root/ffi/real_mode
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-07-04 15:21:01 -0700
committeriximeow <me@iximeow.net>2021-07-04 15:21:01 -0700
commitbb2870e56d6c9a0a7b96be8287193a753e3a4391 (patch)
tree20cbc157d57ad6fc57a18392a3eec4a4f6b8d57c /ffi/real_mode
parent6f91a743a8e6bf720abdb0748bc6755f280b59de (diff)
add ffi wrappers for real mode, protected mode, and a multiarch build
Diffstat (limited to 'ffi/real_mode')
-rw-r--r--ffi/real_mode/Cargo.toml2
-rw-r--r--ffi/real_mode/src/lib.rs11
2 files changed, 12 insertions, 1 deletions
diff --git a/ffi/real_mode/Cargo.toml b/ffi/real_mode/Cargo.toml
index f24f8a4..3451d59 100644
--- a/ffi/real_mode/Cargo.toml
+++ b/ffi/real_mode/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
yaxpeax-x86 = { path = "../../", default-features = false }
-yaxpeax-arch = { version = "0.0.4", default-features = false }
+yaxpeax-arch = { version = "0.1.0", default-features = false }
[lib]
name = "yaxpeax_x86_ffi_real_mode"
diff --git a/ffi/real_mode/src/lib.rs b/ffi/real_mode/src/lib.rs
index e69de29..83c1be3 100644
--- a/ffi/real_mode/src/lib.rs
+++ b/ffi/real_mode/src/lib.rs
@@ -0,0 +1,11 @@
+#![no_std]
+
+#[panic_handler]
+fn panic(_info: &core::panic::PanicInfo) -> ! {
+ loop {}
+}
+
+#[path = "../../src/real_mode.rs"]
+mod real_mode;
+
+pub use real_mode::*;