blob: f7e51617cdae5f997b2752ece9a5623034145e6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "gbos.h"
/* ls: list files in the RAM filesystem. */
void main(void) {
char name[9];
unsigned char i;
for (i = 0; i < 8; i++) {
if (flist(i, name)) { name[8] = 0; puts(name); nl(); }
}
}
|