corrected archivefs docs

This commit is contained in:
JetSetIlly 2024-04-17 15:59:17 +01:00
parent 16adef8e7b
commit b011090937
5 changed files with 26 additions and 22 deletions

View file

@ -12,6 +12,7 @@
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>. // along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package archivefs package archivefs
import "io" import "io"

View file

@ -12,6 +12,7 @@
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>. // along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package archivefs_test package archivefs_test
import ( import (

View file

@ -12,6 +12,7 @@
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>. // along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package archivefs package archivefs
import ( import (

View file

@ -12,6 +12,7 @@
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>. // along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package archivefs package archivefs
import ( import (

View file

@ -24,29 +24,29 @@
// The following file extensions are recognised and force the use of the // The following file extensions are recognised and force the use of the
// specified mapper: // specified mapper:
// //
// Atari 2k "2k" // Atari 2k "2k"
// Atari 4k "4k" // Atari 4k "4k"
// Atari 8k "F8" // Atari 8k "F8"
// Atari 16k "F6" // Atari 16k "F6"
// Atari 32k "F4" // Atari 32k "F4"
// Atari 2k (RAM) "2k+" // Atari 2k (RAM) "2k+"
// Atari 4k (RAM) "4k+" // Atari 4k (RAM) "4k+"
// Atari 8k (RAM) "F8+" // Atari 8k (RAM) "F8+"
// Atari 16k (RAM) "F6+" // Atari 16k (RAM) "F6+"
// Atari 32k (RAM) "F4+" // Atari 32k (RAM) "F4+"
// CBS "FA" // CBS "FA"
// Parker Bros "E0" // Parker Bros "E0"
// M-Network "E7" // M-Network "E7"
// Tigervision "3F" // Tigervision "3F"
// Supercharger "AR", "MP3, "WAV" // Supercharger "AR", "MP3, "WAV"
// DF "DF" // DF "DF"
// 3E "3E" // 3E "3E"
// 3E+ "3E+" // 3E+ "3E+"
// Superbank "SB" // Superbank "SB"
// DPC (Pitfall2) "DPC" // DPC (Pitfall2) "DPC"
// DPC+ "DP+" // DPC+ "DP+"
// CDF "CDF" (including CDFJ) // CDF "CDF" (including CDFJ)
// MovieCart "MVC" // MovieCart "MVC"
// //
// File extensions are case insensitive. // File extensions are case insensitive.
// //