aboutsummaryrefslogtreecommitdiffstats
path: root/src/filesystem.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-24 21:05:16 +0200
committerBad Diode <bd@badd10de.dev>2021-05-24 21:05:16 +0200
commitc1580fd8f8b06efef471578e2ba66a4efb7745c8 (patch)
tree790528883eca263b0c5653fdab67939b00ba01a6 /src/filesystem.c
parent8e90cbd6fd790c16acd86cba878a69160fa4f17b (diff)
downloaduxngba-c1580fd8f8b06efef471578e2ba66a4efb7745c8.tar.gz
uxngba-c1580fd8f8b06efef471578e2ba66a4efb7745c8.zip
Add copyright notice to all files
Diffstat (limited to 'src/filesystem.c')
-rw-r--r--src/filesystem.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/filesystem.c b/src/filesystem.c
index ee55dcf..b60dbde 100644
--- a/src/filesystem.c
+++ b/src/filesystem.c
@@ -1,3 +1,14 @@
1/*
2Copyright (c) 2021 Bad Diode
3
4Permission to use, copy, modify, and distribute this software for any
5purpose with or without fee is hereby granted, provided that the above
6copyright notice and this permission notice appear in all copies.
7
8THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9WITH REGARD TO THIS SOFTWARE.
10*/
11
1// This file implements a filesystem with a minimum block size of 256 bytes. The 12// This file implements a filesystem with a minimum block size of 256 bytes. The
2// maximum number of files depends on the block size. The default 1KB block size 13// maximum number of files depends on the block size. The default 1KB block size
3// will give us 32-64 files depending on the size of MEM_CART. In case we want 14// will give us 32-64 files depending on the size of MEM_CART. In case we want