Difference between revisions of "/sys"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "<c>"/sys"</c> is the system disk in Mini Micro. It contains files such as the following: * '''data''': a folder of data used by some of the demo programs * '''demo''': a...")
 
m
 
Line 1: Line 1:
<c>"/sys"</c> is the system disk in [[Mini Micro]].  It contains files such as the following:
+
<c>"/sys"</c> is the system disk in [[Mini Micro]].  It contains the following files and folders:
 +
 
 +
{| class="wikitable"
 +
|-
 +
! Name !! Description
 +
|-
 +
| '''data''' || a folder of data used by some of the demo programs
 +
|-
 +
| '''demo''' || a folder of small(ish) demo programs
 +
|-
 +
| '''help''' || a folder of data used by the <c>help</c> command
 +
|-
 +
| '''lib''' || a folder of utility modules intended for use with [[import]]
 +
|-
 +
| '''pics''' || a folder of images, mostly intended for use as [[Sprite]] images or [[TileDisplay]] tiles
 +
|-
 +
| '''sounds''' || a folder of digitized [[Sound|sounds]]
 +
|-
 +
| '''startup.ms''' || the system startup script, which defines various global methods like <c>help</c> and <c>clear</c>
 +
|-
 +
| '''tips.txt''' || defines the tips shown at startup (or by the <c>tip</c> command)
 +
|}
  
* '''data''': a folder of data used by some of the demo programs
 
* '''demo''': a folder of small(ish) demo programs
 
* '''help''': a folder of data used by the <c>help</c> command
 
* '''lib''': a folder of utility modules intended for use with [[import]]
 
* '''pics''': a folder of images, mostly intended for use as [[Sprite]] images or [[TileDisplay]] tiles
 
* '''sounds''': a folder of digitized [[Sound|sounds]]
 
* '''startup.ms''': the system startup script, which defines various global methods like <c>help</c> and <c>clear</c>
 
* '''tips.txt''': defines the tips shown at startup (or by the <c>tip</c> command)
 
  
 
The contents of the sys disk are open-source, and may be found [https://github.com/JoeStrout/minimicro-sysdisk on GitHub].
 
The contents of the sys disk are open-source, and may be found [https://github.com/JoeStrout/minimicro-sysdisk on GitHub].
 +
 +
[[Category:Mini Micro]]

Latest revision as of 01:30, 30 January 2025

"/sys" is the system disk in Mini Micro. It contains the following files and folders:

Name Description
data a folder of data used by some of the demo programs
demo a folder of small(ish) demo programs
help a folder of data used by the help command
lib a folder of utility modules intended for use with import
pics a folder of images, mostly intended for use as Sprite images or TileDisplay tiles
sounds a folder of digitized sounds
startup.ms the system startup script, which defines various global methods like help and clear
tips.txt defines the tips shown at startup (or by the tip command)


The contents of the sys disk are open-source, and may be found on GitHub.