mirror of https://github.com/bsnes-emu/bsnes.git
![]() Time for another (hopefully) stable release. The changelog has all updates since the last stable release. Most notably, this release features substantial accuracy improvements all around. Almost all of them represent brand new findings never before seen in any SNES emulator. Changelog: - fixed off-by-one buffer size issue in S-PPU RTO calculations [PiCiJi] - added XML parser - added XML-based memory mapping system - moved header-based memory mapping code into snesreader library - added some linker flags for Fedora [belegdol] - added cheat code database; with codes for over 1,500 games [mightymo] - fixed a bug where S-CPU IRQs were being tested one cycle early on direct page indexed read opcodes - added global cheat system enable/disable checkbox to cheat code editor - fixed bug in overflow calculation of S-CPU ADC and SBC opcodes in BCD mode [blargg] - emulated the S-CPU ALU MUL and DIV hardware delays with partial result calculation steps [blargg] - controller port read now returns real-time results of B button when strobe latch is raised - major improvements to emulation of the S-SMP TEST register [blargg, byuu] - fixed DSP2 memory map [Overload] - "Apply Patch" checkbox will now scan UPS patch folder if one is set in the paths section - fixed S-CPU TSC negative flag calculation in emulation mode [address] - added "make uninstall" command to Makefile for Linux users - S-CPU (H)DMA now updates the S-CPU MDR; fixes a freeze in Speedy Gonzales - Stage 6-1 - very substantial code cleanups and optimizations as a result of moving from C++98 to C++0x |
||
---|---|---|
.. | ||
archive.cpp | ||
archive.hpp | ||
arcread.cpp | ||
array.hpp | ||
changes.txt | ||
coder.cpp | ||
coder.hpp | ||
compress.hpp | ||
crc.cpp | ||
encname.cpp | ||
encname.hpp | ||
extract.cpp | ||
getbits.cpp | ||
getbits.hpp | ||
headers.hpp | ||
license.txt | ||
model.cpp | ||
model.hpp | ||
rar.hpp | ||
rarvm.cpp | ||
rarvm.hpp | ||
rarvmtbl.cpp | ||
rawread.cpp | ||
rawread.hpp | ||
readme.txt | ||
suballoc.cpp | ||
suballoc.hpp | ||
technote.txt | ||
unicode.cpp | ||
unicode.hpp | ||
unpack.cpp | ||
unpack.hpp | ||
unpack15.cpp | ||
unpack20.cpp | ||
unrar.cpp | ||
unrar.h | ||
unrar_misc.cpp | ||
unrar_open.cpp | ||
whatsnew.txt |
readme.txt
Portable UnRAR version 1. General This package includes freeware Unrar C++ source and a few makefiles (makefile.bcc, makefile.msc+msc.dep, makefile.unix). Unrar source is subset of RAR and generated from RAR source automatically, by a small program removing blocks like '#ifndef UNRAR ... #endif'. Such method is not perfect and you may find some RAR related stuff unnecessary in Unrar, especially in header files. If you wish to port Unrar to a new platform, you may need to edit '#define LITTLE_ENDIAN' in os.hpp and data type definitions in rartypes.hpp. if computer architecture does not allow not aligned data access, you need to undefine ALLOW_NOT_ALIGNED_INT and define STRICT_ALIGNMENT_REQUIRED in os.h. Note that it will increase memory requirements. If you use Borland C++ makefile (makefile.bcc), you need to define BASEPATHCC environment (or makefile) variable containing the path to Borland C++ installation. Makefile.unix contains numerous compiler option sets. GCC Linux is selected by default. If you need to compile Unrar for other platforms, uncomment corresponding lines. 2. Unrar binaries If you compiled Unrar for OS, which is not present in "Downloads" and "RAR extras" on www.rarlab.com, we will appreciate if you send us the compiled executable to place it to our site. 3. Acknowledgements This source includes parts of code written by the following authors: Dmitry Shkarin PPMII v.H text compression Dmitry Subbotin Carryless rangecoder Szymon Stefanek AES encryption Brian Gladman AES encryption Steve Reid SHA-1 hash function Marcus Herbert makefile.unix file Tomasz Klim fixes for libunrar.so Robert Riebisch makefile.dj and patches for DJGPP 4. Legal stuff Unrar source may be used in any software to handle RAR archives without limitations free of charge, but cannot be used to re-create the RAR compression algorithm, which is proprietary. Distribution of modified Unrar source in separate form or as a part of other software is permitted, provided that it is clearly stated in the documentation and source comments that the code may not be used to develop a RAR (WinRAR) compatible archiver. More detailed license text is available in license.txt.