Crates.io | x64asm |
lib.rs | x64asm |
version | 0.2.0 |
source | src |
created_at | 2022-04-25 11:05:20.819263 |
updated_at | 2023-01-06 22:40:30.137488 |
description | Library to write x64 Assembly code from Rust, more properly |
homepage | |
repository | https://github.com/antoninhrlt/x64asm/ |
max_upload_size | |
id | 573791 |
size | 21,222 |
Library to write x64 Assembly code from Rust, more properly. Designed for the nasm assembler
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();
In your "Cargo.toml" file :
[dependencies]
x64asm = "*"
Check the current version on crates.io
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();
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
Originally inspired by GregoryComer/rust-x86asm.