mirror of
https://github.com/JetSetIlly/Gopher2600.git
synced 2025-04-02 11:02:17 -04:00
elf SRAM is crunched with this new package on Snapshot() .gitigore updated with */testdata added fuzz target to Makefile
21 lines
972 B
Go
21 lines
972 B
Go
// This file is part of Gopher2600.
|
|
//
|
|
// Gopher2600 is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Gopher2600 is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
// Package crunched provides the Data interface. Implementations of this
|
|
// interface can store data in a crunched and uncrunched state.
|
|
//
|
|
// The intention is that implementations crunch data after a call to Snapshot()
|
|
// and transparently uncrunch it on a call to Data().
|
|
package crunched
|