Isa

Results 2 comments of Isa

Could Zig start supporting Intel's assembler syntax like LLVM's clang does? You can see an example of how I use it[ here.](https://github.com/isoux/4RING_OS/blob/main/boot/load_grub2.c#L94-L118) These are the options I add to clang...

That's right man. I got an [answer](https://discord.com/channels/605571803288698900/751157713135730761/1076061143237414942) that can partially help me for Zig... Like this: ``` asm volatile( \\.intel_syntax noprefix \\mov rax, rbx \\lea rax, [rax + 10] );...