CodeGenLib 0.0.1

A libary to generate x86-64Bit machine code (like LLVM)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Save and store Architectures

use crate::arch::ext::Extension;

/// Enum of supported architectures with extensions to select
/// 
/// `AMD64` - x86-64Bit; x64
pub enum Arch { // enum of supported archs
    AMD64(Vec<Extension>),
}