assembly-arm

assembly-arm is a skill for Claude Code, Codex from mohitmishra786/low-level-dev-skills. It costs 101 tokens per session (2,545 once invoked), scanned A, original, MIT.

A guide to reading and writing ARM and ARM64 assembly, the low-level instructions used by ARM processors. It explains registers, function-call rules, inline assembly, compiler output, and SIMD instructions such as NEON and SVE.

In plain words
What is it for?
Inspecting compiler output, writing inline assembly, debugging ARM programs on hardware or QEMU, and using NEON or SVE operations.
Why use it?
It helps developers understand what compiled code is doing on ARM hardware and diagnose problems involving registers, stacks, calling conventions, or generated instructions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

not rated 203repo +8 2mo ago A scan Socket: passSnyk: passSkillSpector: pass 101 tokens original MIT

Good fit Inspecting compiler output, writing inline assembly, debugging ARM programs on hardware or QEMU, and using NEON or SVE operations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mohitmishra786/low-level-dev-skills/assembly-arm
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mohitmishra786/low-level-dev-skills --skill assembly-arm
Clone the repo
git clone --depth 1 https://github.com/mohitmishra786/low-level-dev-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for assembly-arm

README.md
[![agentmods](https://agentmods.dev/badge/skills/mohitmishra786/low-level-dev-skills/assembly-arm/github.svg)](https://agentmods.dev/skills/mohitmishra786/low-level-dev-skills/assembly-arm)
Your own site
<a href="https://agentmods.dev/skills/mohitmishra786/low-level-dev-skills/assembly-arm"><img src="https://agentmods.dev/badge/skills/mohitmishra786/low-level-dev-skills/assembly-arm/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for assembly-arm

Your own site · 80×15
<a href="https://agentmods.dev/skills/mohitmishra786/low-level-dev-skills/assembly-arm"><img src="https://agentmods.dev/badge/skills/mohitmishra786/low-level-dev-skills/assembly-arm.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,545 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk pass 21 Feb 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.02545
Opus 5 $0.00051 $0.01273
Sonnet 5 $0.00020 $0.00509
Haiku 4.5 $0.00010 $0.00254

Measured 8d ago against content hash 8f952858dad3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

assembly-arm scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/low-level-programming/assembly-arm/SKILL.md · 231 lines

How it starts

The opening of the file, as written. The whole thing — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ARM / AArch64 Assembly

Purpose

Guide agents through AArch64 (64-bit) and ARM (32-bit Thumb) assembly: registers, calling conventions, inline asm, and NEON/SVE SIMD patterns.

Triggers

  • "How do I read ARM64 assembly output?"
  • "What are the AArch64 registers and calling convention?"
  • "How do I write inline asm for ARM?"
  • "What is the difference between AArch64 and ARM Thumb?"
  • "How do I use NEON intrinsics?"

Workflow

1. Generate ARM assembly

# AArch64 (native or cross-compile)
aarch64-linux-gnu-gcc -S -O2 foo.c -o foo.s

# 32-bit ARM Thumb
arm-linux-gnueabihf-gcc -S -O2 -mthumb foo.c -o foo.s

# From objdump
aarch64-linux-gnu-objdump -d -S prog

# From GDB on target
(gdb) disassemble /s main

2. AArch64 registers (AAPCS64)

Register Alias Role
x0x7 Arguments 1–8 and return values
x8 xr Indirect result location (struct return)
x9x15 Caller-saved temporaries
x16x17 ip0, ip1 Intra-procedure-call temporaries (used by linker)
x18 pr Platform register (reserved on some OS)
x19x28 Callee-saved
x29 fp Frame pointer (callee-saved)
x30 lr Link register (return address)
sp Stack pointer (must be 16-byte aligned at call)
pc Program counter (not directly accessible)
xzr wzr Zero register (reads as 0, writes discarded)
v0v7 q0q7 FP/SIMD args and return
v8v15 Callee-saved SIMD (lower 64 bits only)
v16v31 Caller-saved temporaries

Width variants: x0 (64-bit), w0 (32-bit, zero-extends to 64), h0 (16), b0 (8).

3. AAPCS64 calling convention

Integer/pointer args: x0x7 Float/SIMD args: v0v7 Return: x0 (int), x0+x1 (128-bit), v0 (float/SIMD) Callee-saved: x19x28, x29 (fp), x30 (lr), v8v15 (lower 64 bits) Caller-saved: everything else

Stack must be 16-byte aligned at any bl or blr instruction.

Read the full file on GitHub · 231 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 231 lines · 101 tokens per session scan A 8f952858dad3

Subscribe to this mod's changes

assembly-arm is a skill published in the GitHub repository mohitmishra786/low-level-dev-skills (203 stars, last pushed 2mo ago), licensed MIT. It adds 101 tokens to every session and 2,545 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.