tangled
alpha
login
or
join now
gm112.bsky.social
/
org.neocities.gm112
0
fork
atom
Code for https://gm112.neocities.org/
gm112.neocities.org/
0
fork
atom
overview
issues
4
pulls
pipelines
content: update formatting for code preview
gm112.bsky.social
1 month ago
5cc96a3f
52cd3652
1/1
deploy.yaml
success
1m 4s
+11
-11
1 changed file
expand all
collapse all
unified
split
content
blog
en
2026-02-27.md
+11
-11
content/blog/en/2026-02-27.md
···
55
55
<summary>Click to see code! :D</summary>
56
56
57
57
```asm
58
58
-
.macro PLAY_WAIT bank, snd, mask
59
59
-
VM_SFX_PLAY bank, snd, mask, .SFX_PRIORITY_NORMAL
60
60
-
VM_SET_CONST 0, 174
61
61
-
VM_INVOKE b_wait_frames, _wait_frames, 0, 0
62
62
-
.endm
58
58
+
.macro PLAY_WAIT bank, snd, mask
59
59
+
VM_SFX_PLAY bank, snd, mask, .SFX_PRIORITY_NORMAL
60
60
+
VM_SET_CONST 0, 174
61
61
+
VM_INVOKE b_wait_frames, _wait_frames, 0, 0
62
62
+
.endm
63
63
64
64
-
VM_MUSIC_STOP
65
65
-
VM_MUSIC_MUTE 0x0F
64
64
+
VM_MUSIC_STOP
65
65
+
VM_MUSIC_MUTE 0x0F
66
66
67
67
-
PLAY_WAIT ___bank_sound_never_gonna_give_you_, _sound_never_gonna_give_you_, ___mute_mask_sound_never_gonna_give_you_
68
68
-
PLAY_WAIT ___bank_sound_never_gonna_give_you__0, _sound_never_gonna_give_you__0, ___mute_mask_sound_never_gonna_give_you__0
69
69
-
; ... etc. you get the idea.
67
67
+
PLAY_WAIT ___bank_sound_never_gonna_give_you_, _sound_never_gonna_give_you_, ___mute_mask_sound_never_gonna_give_you_
68
68
+
PLAY_WAIT ___bank_sound_never_gonna_give_you__0, _sound_never_gonna_give_you__0, ___mute_mask_sound_never_gonna_give_you__0
69
69
+
; ... etc. you get the idea.
70
70
71
71
-
VM_RET_FAR
71
71
+
VM_RET_FAR
72
72
```
73
73
74
74
</details>