summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 81ceceb..7ba7a95 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,10 @@
+#[cfg(feature="use-serde")]
+#[macro_use] extern crate serde_derive;
+#[cfg(feature="use-serde")]
+extern crate serde;
+#[cfg(feature="use-serde")]
+use serde::{Serialize, Deserialize};
+
extern crate yaxpeax_arch;
extern crate termion;
@@ -5,8 +12,14 @@ use yaxpeax_arch::{Arch, Decodable, LengthedInstruction};
mod display;
+#[cfg(feature="use-serde")]
+#[derive(Debug, Serialize, Deserialize)]
+pub struct MSP430;
+
+#[cfg(not(feature="use-serde"))]
#[derive(Debug)]
pub struct MSP430;
+
impl Arch for MSP430 {
type Address = u16;
type Instruction = Instruction;