aarch64
aarch64 copied to clipboard
Pure Ruby ARM64 Assembler
Implement MSR_imm instruction Description: Move immediate value to Special Register Assembly template: ``` MSR , # ```
Thanks for the gem! I'm hitting console warnings when attempting to use this Gem with a rails app and requiring the `aarch64/parser`, the warning is: ``` warning: already initialized constant...
First attempt at closing https://github.com/tenderlove/aarch64/issues/400 This approach runs the parser in two phases: - First pass - Collecting the required labels and offsets - Second pass - Generating the instructions...
I'm not sure what is and isn't out of scope for your project, so just thought I'd raise a few issues to confirm before attempting to research an implementation to...
I'm not sure what is and isn't out of scope for your project, so just thought I'd raise a few issues to confirm before attempting to research an implementation to...
aarch64 does not seem to parse the following expression: ```asm add x1, sp, x2 ``` Test: ```ruby def test_add # existing tests assert_bytes "add x1, sp, x2", [0xe1, 0x63, 0x22,...
I was hitting an edgecase when simm/pimm isn't directly divisible by 8, and wanted to create a set of placeholder tests for `test/parser_test.rb` to help out: ```ruby def test_ldr assert_bytes...