1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
Copyright 2022 Gabriel Jensen.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <agbx/priv.h>
#include <agbx/gfx.h>
void agbx_done(agbx_err const _err) {
if (_err == agbx_err_ok) {
__asm__ (
"svc 0x3\n"
);
__builtin_unreachable();
}
/* Display the barcode-like error message: */
agbx_set10(0x400'0000u,0x404u);
agbx_set10(0x500'0000u,0x0u);
agbx_set10(0x500'0002u,0b11111u);
agbx_i8 err[0xBu];
for (agbx_i8 pos = 0x0u;pos != 0x8u;++pos) {err[pos] = (agbx_i8)_err >> pos & 0x1u;}
err[0x8u] = 0x0u;
err[0x9u] = 0x1u;
err[0xAu] = 0x0u;
for (agbx_i10 pos = 0x0u;pos != 0x9600u;pos += 0xF0u) {
agbx_setpx1(0x600'0000u,pos, err[0x0u]);
agbx_setpx1(0x600'0000u,pos + 0x1u,err[0x1u]);
agbx_setpx1(0x600'0000u,pos + 0x2u,err[0x2u]);
agbx_setpx1(0x600'0000u,pos + 0x3u,err[0x3u]);
agbx_setpx1(0x600'0000u,pos + 0x4u,err[0x4u]);
agbx_setpx1(0x600'0000u,pos + 0x5u,err[0x5u]);
agbx_setpx1(0x600'0000u,pos + 0x6u,err[0x6u]);
agbx_setpx1(0x600'0000u,pos + 0x7u,err[0x7u]);
agbx_setpx1(0x600'0000u,pos + 0x8u,err[0x8u]);
agbx_setpx1(0x600'0000u,pos + 0x9u,err[0x9u]);
agbx_setpx1(0x600'0000u,pos + 0xAu,err[0xAu]);
}
__asm__ (
"svc 0x2\n"
);
for (;;) {}
}
|