mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-24 05:18:36 +00:00
New direction: attempt a first sweep with the EP128Emu ROM.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
//
|
||||
// FileBundle.cpp
|
||||
// Clock Signal
|
||||
//
|
||||
// Created by Thomas Harte on 19/11/2025.
|
||||
// Copyright © 2025 Thomas Harte. All rights reserved.
|
||||
//
|
||||
|
||||
#include "FileBundle.hpp"
|
||||
@@ -0,0 +1,31 @@
|
||||
//
|
||||
// FileBundle.hpp
|
||||
// Clock Signal
|
||||
//
|
||||
// Created by Thomas Harte on 19/11/2025.
|
||||
// Copyright © 2025 Thomas Harte. All rights reserved.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Storage::FileBundle {
|
||||
|
||||
/*!
|
||||
A File Bundle is a collection of individual files, abstracted from whatever media they might
|
||||
be one.
|
||||
|
||||
Initial motivation is allowing some machines direct local filesystem access. An attempt has
|
||||
been made to draft this in such a way as to allow it to do things like expose ZIP files as
|
||||
bundles in the future.
|
||||
*/
|
||||
struct FileBundle {
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
struct LocalFSFileBundle {
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user