mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-23 17:09:44 +00:00
d87a0f633d
byuu says: - bsnes: added video filters from bsnes v082 - bsnes: added ZSNES snow effect option when games paused or unloaded (no, I'm not joking) - bsnes: added 7-zip support (LZMA 19.00 SDK) [Recent higan WIPs have also mentioned bsnes changes, although the higan code no longer includes the bsnes code. These changes include: - higan, bsnes: added EXLOROM, EXLOROM-RAM, EXHIROM mappings - higan, bsnes: focus the viewport after leaving fullscreen exclusive mode - bsnes: re-added mightymo's cheat code database - bsnes: improved make install rules for the game and cheat code databases - bsnes: delayed construction of hiro::Window objects to properly show bsnes window icons - Ed.]
32 lines
936 B
C++
32 lines
936 B
C++
#pragma once
|
|
|
|
/* CD-ROM sector functions.
|
|
*
|
|
* Implemented:
|
|
* eight-to-fourteen modulation (encoding and decoding)
|
|
* sync header creation and verification
|
|
* error detection code creation and verification
|
|
* reed-solomon product-code creation and verification
|
|
* sector scrambling and descrambling (currently unverified)
|
|
*
|
|
* Unimplemented:
|
|
* reed-solomon product-code correction
|
|
* cross-interleave reed-solomon creation, verification, and correction
|
|
* CD-ROM XA mode 2 forms 1 & 2 support
|
|
* subcode insertion and removal
|
|
* subcode decoding from CUE files
|
|
* channel frame expansion and reduction
|
|
*/
|
|
|
|
#include <nall/galois-field.hpp>
|
|
#include <nall/matrix.hpp>
|
|
#include <nall/reed-solomon.hpp>
|
|
|
|
#include <nall/cd/crc16.hpp>
|
|
#include <nall/cd/efm.hpp>
|
|
#include <nall/cd/sync.hpp>
|
|
#include <nall/cd/edc.hpp>
|
|
#include <nall/cd/rspc.hpp>
|
|
#include <nall/cd/scrambler.hpp>
|
|
#include <nall/cd/session.hpp>
|