This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub struct Architecture { | |
pub name: String, | |
} | |
#[derive(Clone, Copy)] | |
pub struct RegisterInfo; | |
#[derive(Clone, Copy, Hash, PartialEq, Eq)] | |
pub struct Register; | |
#[derive(Clone, Copy)] | |
pub struct RegisterStackInfo; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NOTE: bits are from least to most significant, 'X' means the value could not be defined as a single bit. | |
name DEC: | |
bits 01100011 | |
bits 01110011 | |
bits 01101011 | |
bits 01111011 | |
name INC: | |
bits 01100111 | |
bits 01110111 | |
bits 01101111 |
OlderNewer