-
Notifications
You must be signed in to change notification settings - Fork 6
/
sidebars.js
29 lines (27 loc) · 925 Bytes
/
sidebars.js
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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
nav: [
"index",
{
"Language reference": [
{ type: 'doc', id: 'rgbasm.5', label: "Assembly syntax" },
{ type: 'doc', id: 'gbz80.7', label: "CPU instructions" },
{ type: 'doc', id: 'rgbasm-old.5', label: "Obsolete syntax" },
{ type: 'doc', id: 'rgblink.5', label: "Linkerscript format" },
{ type: 'doc', id: 'rgbds.5', label: "Object file format" },
]
},
{
"Command-line options": [
{ type: 'doc', id: 'rgbasm.1', label: "RGBASM" },
{ type: 'doc', id: 'rgblink.1', label: "RGBLINK" },
{ type: 'doc', id: 'rgbfix.1', label: "RGBFIX" },
{ type: 'doc', id: 'rgbgfx.1', label: "RGBGFX" },
]
},
{ type: 'doc', id: 'rgbds.7', label: "History" },
"feedback",
],
};
module.exports = sidebars;