10 releases
0.2.0 | Jan 6, 2023 |
---|---|
0.1.9 | Aug 27, 2022 |
0.1.5 | Jul 23, 2022 |
0.1.3 | May 26, 2022 |
0.1.1 | Apr 25, 2022 |
#2 in #nasm
26 downloads per month
21KB
481 lines
x64asm
Library to write x64 Assembly code from Rust, more properly. Designed for the nasm assembler
How to use
let instructions = vec![
i!(/* <mnemonic>, [operands, ...] */),
// other instructions
];
let code = instructions.to_assembly(/*separator (space or tab)*/);
// Writes to a file
let mut stream = File::create(&Path::new("output.asm")).unwrap();
write!(stream, "{}", code).unwrap();
Installation
In your "Cargo.toml" file :
[dependencies]
x64asm = "*"
Check the current version on crates.io
Example
let instructions = vec![
i!(Global, oplabel!("_start")),
i!(section!(Text)),
i!(label!("_start")),
i!(Mov, reg!(Rax), Op::Literal(1)),
i!(Mov, reg!(Rdi), Op::Literal(1)),
i!(Mov, reg!(Rsi), oplabel!("msg")),
i!(Mov, reg!(Rdx), oplabel!("msg_len")),
i!(Syscall),
i!(Mov, reg!(Rax), Op::Literal(60)),
i!(Mov, reg!(Rdi), Op::Literal(0)),
i!(Syscall),
i!(section!(Data)),
i!(label!("msg"), dd!(Db), opstring!("Hello world")),
i!(label!("msg_len"), dd!(Equ), opexpr!("$ - msg")),
];
let code = instructions.to_assembly(Separator::Space);
let mut stream = File::create(&Path::new("output.asm")).unwrap();
write!(stream, "{}", code).unwrap();
Imports for the example
use std::path::Path;
use std::fs::File;
use std::io::prelude::*;
use x64asm::convert::{ ToAssembly, Separator };
use x64asm::macros::*;
And then, the generated "output.asm" file :
global _start
section .text
_start:
mov rax, 1
mov rdi, 1
mov rsi, msg
mov rdx, msg_len
syscall
mov rax, 60
mov rdi, 0
syscall
section .data
msg: db `Hello world`
msg_len: equ $ - msg
Notes
Originally inspired by GregoryComer/rust-x86asm.