Skip to content

Commit

Permalink
assembly: specify assembly variant in note name
Browse files Browse the repository at this point in the history
  • Loading branch information
m-lamonaca committed May 17, 2024
1 parent 5e871d0 commit 3ff6693
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Assembly (Inter - x86_64)
# Assembly (Intel - x86_64)

> **WARN**: Since assembly is _not_ portable all instructions will only work under a 64bit Linux system.
Expand Down Expand Up @@ -47,7 +47,7 @@ Declaration instructions:
- `equ`: set a name to the value of an expression

> **Note**: See the NASM manual, section 3.2.1 for the full list.
> **Note**: all byte declaarations are [Little Endian](https://en.wikipedia.org/wiki/Endianness "Endiannes")
> **Note**: all byte declarations are [Little Endian](https://en.wikipedia.org/wiki/Endianness "Endiannes")
```asm linenums="1"
arr: db 0x12,0x34,0x56,0x78,0x90
Expand Down
5 changes: 3 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,14 @@ nav:
- SQL: databases/sql.md
- MongoDB: databases/mongo-db.md
- Languages:
- Assembly: languages/assembly/assembly.md
- HTML: languages/html/html.md
- Markdown: languages/markdown.md
- CSS: languages/css/css.md
- C: languages/c/c.md
- Kotlin: languages/kotlin/kotlin.md
- Swift: languages/swift/swift.md
- Assembly:
- Intel x86_64: languages/assembly/intel-x86-64.md
- Python:
- Python: languages/python/python.md
- Modules:
Expand Down Expand Up @@ -186,4 +187,4 @@ nav:
- GraphQL: misc/graph-ql.md
- RegEx: misc/regular-expressions.md
- SSH: misc/ssh.md
- WebComponents: misc/web-components.md
- WebComponents: misc/web-components.md

0 comments on commit 3ff6693

Please sign in to comment.