NES

所属分类:处理器开发
开发工具:Asm
文件大小:118KB
下载次数:9
上传日期:2015-07-23 13:01:04
上 传 者feisheng168
说明:  非常完整的arm7的汇编nes模拟器核心.
(nes emulator compilation of core arm7)

文件列表:
PocketNES998Src\6502.h (213, 2005-07-04)
PocketNES998Src\6502.s (48382, 2005-07-04)
PocketNES998Src\6502mac.h (8872, 2005-03-23)
PocketNES998Src\boot.s (4786, 2004-07-22)
PocketNES998Src\cart.h (622, 2003-09-19)
PocketNES998Src\cart.s (25712, 2005-07-04)
PocketNES998Src\client.h (2371, 2004-07-24)
PocketNES998Src\equates.h (6342, 2005-05-09)
PocketNES998Src\font.lz77 (1908, 2004-03-02)
PocketNES998Src\fontpal.bin (64, 2002-06-09)
PocketNES998Src\gba.h (3165, 2005-02-28)
PocketNES998Src\io.h (205, 2005-05-08)
PocketNES998Src\io.s (19737, 2005-05-10)
PocketNES998Src\konami.h (168, 2003-02-18)
PocketNES998Src\main.c (7858, 2005-07-04)
PocketNES998Src\Mappers\konami.s (1566, 2005-05-08)
PocketNES998Src\Mappers\map023771.s (2087, 2005-07-04)
PocketNES998Src\Mappers\map1.s (3469, 2005-04-11)
PocketNES998Src\Mappers\map105.s (3716, 2005-05-08)
PocketNES998Src\Mappers\map1166.s (1328, 2004-08-28)
PocketNES998Src\Mappers\map15.s (1723, 2003-02-17)
PocketNES998Src\Mappers\map151.s (1198, 2004-08-28)
PocketNES998Src\Mappers\map16.s (1767, 2005-05-08)
PocketNES998Src\Mappers\map17.s (1517, 2005-05-08)
PocketNES998Src\Mappers\map18.s (2689, 2005-05-08)
PocketNES998Src\Mappers\map184.s (705, 2005-07-05)
PocketNES998Src\Mappers\map19.s (2047, 2005-05-08)
PocketNES998Src\Mappers\map2125.s (2327, 2003-02-18)
PocketNES998Src\Mappers\map22.s (1408, 2003-03-31)
PocketNES998Src\Mappers\map228.s (1216, 2002-12-12)
PocketNES998Src\Mappers\map23.s (1996, 2003-02-18)
PocketNES998Src\Mappers\map232.s (1066, 2003-02-17)
PocketNES998Src\Mappers\map2426.s (2128, 2003-02-18)
PocketNES998Src\Mappers\map32.s (974, 2003-02-17)
PocketNES998Src\Mappers\map33.s (2219, 2005-05-08)
PocketNES998Src\Mappers\map34.s (873, 2003-02-13)
PocketNES998Src\Mappers\map4.s (3388, 2005-05-08)
PocketNES998Src\Mappers\map40.s (1598, 2005-05-08)
PocketNES998Src\Mappers\map4_new.s (3460, 2003-02-20)
PocketNES998Src\Mappers\map4_old.s (3299, 2004-07-12)
... ...

-----BEGIN PGP SIGNED MESSAGE----- ============================================================================ miniLZO -- mini subset of the LZO real-time data compression library ============================================================================ Author : Markus Franz Xaver Johannes Oberhumer http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html Version : 1.07 Date : 18-Oct-2000 I've created miniLZO for projects where it is inconvenient to include (or require) the full LZO source code just because you want to add a little bit of data compression to your application. miniLZO implements the LZO1X-1 compressor and both the standard and safe LZO1X decompressor. Apart from fast compression it also useful for situations where you want to use pre-compressed data files (which must have been compressed with LZO1X-999). miniLZO consists of one C source file and two header files: minilzo.c minilzo.h lzoconf.h To use miniLZO just copy these files into your source directory, add minilzo.c to your Makefile and #include minilzo.h from your program. Note: you also must distribute this file (`README.LZO') with your project. minilzo.o compiles to about 6 kB (using gcc or Watcom C on a i386), and the sources are about 14 kB when packed with zip - so there's no more excuse that your application doesn't support data compression :-) For more information, documentation, example programs and other support files (like Makefiles and build scripts) please download the full LZO package from http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html Have fun, Markus P.S. minilzo.c is generated automatically from the LZO sources and therefore functionality is completely identical Appendix A: building miniLZO ---------------------------- miniLZO is written such a way that it should compile and run out-of-the-box on most machines. If you are running on a very unusual architecture and lzo_init() fails then you should first recompile with `-DLZO_DEBUG' to see what causes the failure. The most probable case is something like `sizeof(char *) != sizeof(long)'. After identifying the problem you can compile by adding some defines like `-DSIZEOF_CHAR_P=8' to your Makefile. The best solution is (of course) using Autoconf - if your project uses Autoconf anyway just add `-DMINILZO_HAVE_CONFIG_H' to your compiler flags when compiling minilzo.c. See the LZO distribution for an example how to set up configure.in. Appendix B: list of public functions available in miniLZO --------------------------------------------------------- Library initialization lzo_init() Compression lzo1x_1_compress() Decompression lzo1x_decompress() lzo1x_decompress_safe() Checksum functions lzo_adler32() Version functions lzo_version() lzo_version_string() lzo_version_date() Portable (but slow) string functions lzo_memcmp() lzo_memcpy() lzo_memmove() lzo_memset() Appendix C: suggested macros for `configure.in' when using Autoconf ------------------------------------------------------------------- Checks for typedefs and structures AC_CHECK_TYPE(ptrdiff_t,long) AC_TYPE_SIZE_T AC_CHECK_SIZEOF(unsigned short) AC_CHECK_SIZEOF(unsigned) AC_CHECK_SIZEOF(unsigned long) AC_CHECK_SIZEOF(char *) AC_CHECK_SIZEOF(ptrdiff_t) AC_CHECK_SIZEOF(size_t) Checks for compiler characteristics AC_C_CONST Checks for library functions AC_CHECK_FUNCS(memcmp memcpy memmove memset) Appendix D: Copyright --------------------- LZO and miniLZO are Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer LZO and miniLZO are distributed under the terms of the GNU General Public License (GPL). See the file COPYING. Special licenses for commercial and other applications which are not willing to accept the GNU General Public License are available by contacting the author. -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBOez6EG10fyLu8beJAQFYJAQAx5RYO13VB8A25KGP2BFzvHWfX+QkGTmO LEUfTm2URZZ9DDyz7UbZsVWuK+ztOqD4H6BiwpXldJ1JWf02gI9seCZd7GA5LaGP VyLrU2Kuv7DVf74cVMRs+CSKDYV6AW0KsGDeBY7Uceh7r9nBSM8QJkcqCnZnFkm5 JXP8ySD6u9U= =oXrB -----END PGP SIGNATURE-----

近期下载者

相关文件


收藏者