diff options
| author | cadmic <cadmic24@gmail.com> | 2024-07-27 21:24:13 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-28 00:24:13 -0400 |
| commit | 5515aa170567f1dd52b625a5adae7619ccdde291 (patch) | |
| tree | 8ca3a76e22bba7009e73e70fee398bf29feaafae /docs | |
| parent | 067d06bb56f2acb3436c24150e16487437dbf7c1 (diff) | |
Configure incbins in version config instead of using the Debug ROM (#2005)
* Run CPP for data/*.s
* Configure incbins in version config instead of using the Debug ROM
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorial/data.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorial/data.md b/docs/tutorial/data.md index a96d26d84..bc3bf0765 100644 --- a/docs/tutorial/data.md +++ b/docs/tutorial/data.md @@ -37,10 +37,10 @@ Large code block, click to show ``` .include "macro.inc" - # assembler directives - .set noat # allow manual use of $at - .set noreorder # don't insert nops after branches - .set gp=64 # allow use of 64-bit general purpose registers + /* assembler directives */ + .set noat /* allow manual use of $at */ + .set noreorder /* don't insert nops after branches */ + .set gp=64 /* allow use of 64-bit general purpose registers */ .section .data |
