Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Use /libdata/firmware/run instead of /libdata/firmware/rum f...
details: https://anonhg.NetBSD.org/src/rev/ae26ae935cf2
branches: trunk
changeset: 779522:ae26ae935cf2
user: nonaka <nonaka%NetBSD.org@localhost>
date: Fri Jun 01 13:19:38 2012 +0000
description:
Use /libdata/firmware/run instead of /libdata/firmware/rum for run(4) firmwares.
diffstat:
distrib/sets/lists/base/mi | 10 +-
etc/mtree/NetBSD.dist.base | 3 +-
share/man/man4/run.4 | 6 +-
sys/dev/microcode/Makefile | 4 +-
sys/dev/microcode/rum/Makefile | 4 +-
sys/dev/microcode/rum/build.c | 8 +-
sys/dev/microcode/rum/microcode.h | 762 +-------------------------------------
sys/dev/microcode/rum/run-rt2870 | Bin
sys/dev/microcode/rum/run-rt3071 | Bin
sys/dev/microcode/run/Makefile | 14 +
sys/dev/microcode/run/build.c | 59 ++
sys/dev/microcode/run/microcode.h | 777 ++++++++++++++++++++++++++++++++++++++
sys/dev/microcode/run/run-license | 18 +
sys/dev/microcode/run/run-rt2870 | Bin
sys/dev/microcode/run/run-rt3071 | Bin
sys/dev/usb/if_run.c | 6 +-
16 files changed, 895 insertions(+), 776 deletions(-)
diffs (truncated from 1810 to 300 lines):
diff -r 81d1abcde381 -r ae26ae935cf2 distrib/sets/lists/base/mi
--- a/distrib/sets/lists/base/mi Fri Jun 01 12:38:25 2012 +0000
+++ b/distrib/sets/lists/base/mi Fri Jun 01 13:19:38 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.994 2012/05/30 14:30:32 nonaka Exp $
+# $NetBSD: mi,v 1.995 2012/06/01 13:19:38 nonaka Exp $
#
# Note: Don't delete entries from here - mark them as "obsolete" instead,
# unless otherwise stated below.
@@ -181,8 +181,12 @@
./libdata/firmware/rum base-firmware-root
./libdata/firmware/rum/rum-license base-firmware-root
./libdata/firmware/rum/rum-rt2573 base-firmware-root
-./libdata/firmware/rum/run-rt2870 base-firmware-root
-./libdata/firmware/rum/run-rt3071 base-firmware-root
+./libdata/firmware/rum/run-rt2870 base-obsolete obsolete
+./libdata/firmware/rum/run-rt3071 base-obsolete obsolete
+./libdata/firmware/run base-firmware-root
+./libdata/firmware/run/run-license base-firmware-root
+./libdata/firmware/run/run-rt2870 base-firmware-root
+./libdata/firmware/run/run-rt3071 base-firmware-root
./libdata/firmware/upgt base-firmware-root
./libdata/firmware/urtwn base-firmware-root
./libdata/firmware/zyd base-firmware-root
diff -r 81d1abcde381 -r ae26ae935cf2 etc/mtree/NetBSD.dist.base
--- a/etc/mtree/NetBSD.dist.base Fri Jun 01 12:38:25 2012 +0000
+++ b/etc/mtree/NetBSD.dist.base Fri Jun 01 13:19:38 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: NetBSD.dist.base,v 1.99 2012/03/25 00:11:18 nonaka Exp $
+# $NetBSD: NetBSD.dist.base,v 1.100 2012/06/01 13:19:38 nonaka Exp $
# @(#)4.4BSD.dist 8.1 (Berkeley) 6/13/93
# Do not customize this file as it may be overwritten on upgrades.
@@ -70,6 +70,7 @@
./libdata/firmware/if_wpi
./libdata/firmware/ral
./libdata/firmware/rum
+./libdata/firmware/run
./libdata/firmware/upgt
./libdata/firmware/urtwn
./libdata/firmware/zyd
diff -r 81d1abcde381 -r ae26ae935cf2 share/man/man4/run.4
--- a/share/man/man4/run.4 Fri Jun 01 12:38:25 2012 +0000
+++ b/share/man/man4/run.4 Fri Jun 01 13:19:38 2012 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: run.4,v 1.2 2012/05/30 15:17:00 wiz Exp $
+.\" $NetBSD: run.4,v 1.3 2012/06/01 13:19:38 nonaka Exp $
.\" $OpenBSD: run.4,v 1.34 2012/03/24 15:11:04 jsg Exp $
.\"
.\" Copyright (c) 2008 Damien Bergamini <damien.bergamini%free.fr@localhost>
@@ -83,8 +83,8 @@
which are loaded when an interface is brought up:
.Pp
.Bl -tag -width Ds -offset indent -compact
-.It /libdata/firmware/rum/run-rt2870
-.It /libdata/firmware/rum/run-rt3071
+.It /libdata/firmware/run/run-rt2870
+.It /libdata/firmware/run/run-rt3071
.El
.Sh HARDWARE
The following adapters should work:
diff -r 81d1abcde381 -r ae26ae935cf2 sys/dev/microcode/Makefile
--- a/sys/dev/microcode/Makefile Fri Jun 01 12:38:25 2012 +0000
+++ b/sys/dev/microcode/Makefile Fri Jun 01 13:19:38 2012 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2010/07/05 20:32:24 mrg Exp $
+# $NetBSD: Makefile,v 1.9 2012/06/01 13:19:39 nonaka Exp $
-SUBDIR+= ral rum zyd
+SUBDIR+= ral rum run zyd
SUBDIR+= radeon
.include <bsd.subdir.mk>
diff -r 81d1abcde381 -r ae26ae935cf2 sys/dev/microcode/rum/Makefile
--- a/sys/dev/microcode/rum/Makefile Fri Jun 01 12:38:25 2012 +0000
+++ b/sys/dev/microcode/rum/Makefile Fri Jun 01 13:19:38 2012 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.2 2012/05/30 14:30:35 nonaka Exp $
+# $NetBSD: Makefile,v 1.3 2012/06/01 13:19:39 nonaka Exp $
NOMAN= # defined
-FILES= rum-rt2573 run-rt2870 run-rt3071 rum-license
+FILES= rum-rt2573 rum-license
# XXX
includes:
diff -r 81d1abcde381 -r ae26ae935cf2 sys/dev/microcode/rum/build.c
--- a/sys/dev/microcode/rum/build.c Fri Jun 01 12:38:25 2012 +0000
+++ b/sys/dev/microcode/rum/build.c Fri Jun 01 13:19:38 2012 +0000
@@ -1,5 +1,5 @@
-/* $NetBSD: build.c,v 1.2 2012/05/30 14:30:35 nonaka Exp $ */
-/* $OpenBSD: build.c,v 1.3 2009/05/15 15:53:55 damien Exp $ */
+/* $NetBSD: build.c,v 1.3 2012/06/01 13:19:39 nonaka Exp $ */
+/* $OpenBSD: build.c,v 1.1 2006/01/09 20:03:40 damien Exp $ */
/*-
* Copyright (c) 2006
@@ -51,9 +51,7 @@
int
main(void)
{
- output("rum-rt2573", rt2573, sizeof rt2573);
- output("run-rt2870", rt2870, sizeof rt2870);
- output("run-rt3071", rt3071, sizeof rt3071);
+ output("rum-rt2573", rt2573, sizeof rt2573);
return 0;
}
diff -r 81d1abcde381 -r ae26ae935cf2 sys/dev/microcode/rum/microcode.h
--- a/sys/dev/microcode/rum/microcode.h Fri Jun 01 12:38:25 2012 +0000
+++ b/sys/dev/microcode/rum/microcode.h Fri Jun 01 13:19:38 2012 +0000
@@ -1,7 +1,8 @@
-/* $OpenBSD: microcode.h,v 1.5 2010/02/07 09:42:15 damien Exp $ */
+/* $NetBSD: microcode.h,v 1.3 2012/06/01 13:19:39 nonaka Exp $ */
+/* $OpenBSD: microcode.h,v 1.1 2006/08/17 08:32:30 damien Exp $ */
/*-
- * Copyright (c) 2005-2010, Ralink Technology, Corp.
+ * Copyright (c) 2005-2006, Ralink Technology, Corp.
* Paul Lin <paul_lin%ralinktech.com.tw@localhost>
*
* Permission to use, copy, modify, and distribute this software for any
@@ -18,8 +19,8 @@
*/
/*
- * This file contains the loadable 8051 microcode for the Ralink RT2573,
- * RT2870 and RT3071 chipsets.
+ * This file contains the loadable 8051 microcode for the Ralink RT2573
+ * chipset.
*/
static const uint8_t rt2573[] = {
@@ -211,756 +212,3 @@
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x07,
0x29, 0xe9
};
-
-static const uint8_t rt2870[] = {
- 0xff, 0xff, 0xff, 0x02, 0x10, 0x28, 0x02, 0x10, 0x32, 0x02, 0x10,
- 0x78, 0x02, 0x13, 0x2a, 0x02, 0x13, 0x2b, 0x02, 0x13, 0x4a, 0x02,
- 0x13, 0x4f, 0x12, 0x13, 0x4b, 0x22, 0x02, 0x17, 0xb9, 0x02, 0x18,
- 0xf0, 0x02, 0x14, 0x48, 0x02, 0x13, 0x83, 0x30, 0x05, 0x06, 0x20,
- 0x0d, 0x03, 0x12, 0x19, 0xc8, 0x22, 0x90, 0x01, 0x8c, 0xe0, 0x30,
- 0xe3, 0x1b, 0xe5, 0x4c, 0x30, 0xe0, 0x04, 0x7f, 0x40, 0x80, 0x02,
- 0x7f, 0x00, 0x90, 0x10, 0x2f, 0xef, 0xf0, 0x90, 0x01, 0x8c, 0x74,
- 0x08, 0xf0, 0xe4, 0x90, 0x01, 0xa7, 0xf0, 0x90, 0x01, 0x8c, 0xe0,
- 0x30, 0xe0, 0x1c, 0x90, 0x01, 0x80, 0xe0, 0xb4, 0x02, 0x15, 0xa3,
- 0xe0, 0xb4, 0x01, 0x10, 0x90, 0x01, 0x84, 0xe0, 0xb4, 0x81, 0x09,
- 0x90, 0x01, 0x8c, 0x74, 0x01, 0xf0, 0x12, 0x0d, 0xc8, 0x22, 0x90,
- 0x04, 0x14, 0xe0, 0x20, 0xe7, 0x03, 0x02, 0x13, 0x29, 0x90, 0x70,
- 0x12, 0xe0, 0xf5, 0x56, 0x90, 0x04, 0x04, 0xe0, 0x12, 0x0a, 0x9d,
- 0x10, 0xd9, 0x31, 0x10, 0xbd, 0x36, 0x11, 0x02, 0x50, 0x11, 0x39,
- 0x51, 0x11, 0x42, 0x52, 0x11, 0x42, 0x53, 0x11, 0x42, 0x54, 0x11,
- 0x83, 0x55, 0x11, 0xd2, 0x56, 0x12, 0x30, 0x70, 0x12, 0x5b, 0x71,
- 0x12, 0x89, 0x72, 0x12, 0xe0, 0x73, 0x13, 0x01, 0x80, 0x00, 0x00,
- 0x13, 0x29, 0x90, 0x70, 0x11, 0xe0, 0xf5, 0x3c, 0xe4, 0x90, 0x70,
- 0x13, 0xf0, 0x90, 0x04, 0x14, 0x74, 0x80, 0xf0, 0xe5, 0x56, 0xf4,
- 0x70, 0x03, 0x02, 0x13, 0x29, 0x02, 0x13, 0x22, 0x20, 0x02, 0x03,
- 0x30, 0x03, 0x1d, 0x7d, 0x02, 0xaf, 0x56, 0x12, 0x0b, 0x91, 0x90,
- 0x04, 0x14, 0x74, 0x80, 0xf0, 0xe4, 0x90, 0x70, 0x13, 0xf0, 0xe5,
- 0x56, 0xf4, 0x70, 0x03, 0x02, 0x13, 0x29, 0x02, 0x13, 0x22, 0x85,
- 0x56, 0x41, 0xd2, 0x02, 0x22, 0x90, 0x70, 0x10, 0xe0, 0x54, 0x7f,
- 0xff, 0xbf, 0x0a, 0x0d, 0x90, 0x70, 0x11, 0xe0, 0xb4, 0x08, 0x06,
- 0x75, 0x4e, 0x01, 0x75, 0x4f, 0x84, 0x90, 0x70, 0x10, 0xe0, 0x54,
- 0x7f, 0xff, 0xbf, 0x02, 0x12, 0x90, 0x70, 0x11, 0xe0, 0x64, 0x08,
- 0x60, 0x04, 0xe0, 0xb4, 0x20, 0x06, 0x75, 0x4e, 0x03, 0x75, 0x4f,
- 0x20, 0xe4, 0xf5, 0x27, 0x22, 0x90, 0x70, 0x11, 0xe0, 0x24, 0xff,
- 0x92, 0x47, 0x22, 0x90, 0x04, 0x04, 0xe0, 0x25, 0xe0, 0x24, 0x5d,
- 0xf5, 0x57, 0x90, 0x70, 0x10, 0xe0, 0xff, 0x74, 0x47, 0x25, 0x57,
- 0xf8, 0xc6, 0xef, 0xc6, 0x90, 0x70, 0x11, 0xe0, 0xff, 0x74, 0x48,
- 0x25, 0x57, 0xf8, 0xc6, 0xef, 0xc6, 0xe4, 0xfd, 0xaf, 0x56, 0x12,
- 0x0b, 0x91, 0x90, 0x04, 0x14, 0x74, 0x80, 0xf0, 0xe4, 0x90, 0x70,
- 0x13, 0xf0, 0xe5, 0x56, 0xf4, 0x70, 0x03, 0x02, 0x13, 0x29, 0x02,
- 0x13, 0x22, 0xe5, 0x47, 0x64, 0x07, 0x60, 0x1d, 0xe5, 0x47, 0x64,
- 0x08, 0x60, 0x17, 0xe5, 0x47, 0x64, 0x09, 0x60, 0x11, 0xe5, 0x47,
- 0x64, 0x0a, 0x60, 0x0b, 0xe5, 0x47, 0x64, 0x0b, 0x60, 0x05, 0xe5,
- 0x47, 0xb4, 0x0c, 0x08, 0x90, 0x70, 0x11, 0xe0, 0x54, 0x0f, 0xf5,
- 0x3a, 0xe5, 0x47, 0xb4, 0x09, 0x08, 0xe5, 0x3a, 0xb4, 0x03, 0x03,
- 0xe4, 0xf5, 0x46, 0xe5, 0x47, 0xb4, 0x0a, 0x08, 0xe5, 0x3a, 0xb4,
- 0x01, 0x03, 0xe4, 0xf5, 0x46, 0xe4, 0xfd, 0xaf, 0x56, 0x12, 0x0b,
- 0x91, 0xd2, 0x04, 0x22, 0x90, 0x70, 0x11, 0xe0, 0xf4, 0xff, 0x90,
- 0x70, 0x10, 0xe0, 0x5f, 0xff, 0x90, 0x70, 0x11, 0xe0, 0x55, 0x27,
- 0x4f, 0x90, 0x70, 0x18, 0xf0, 0x90, 0x70, 0x11, 0xe0, 0x90, 0x70,
- 0x19, 0xf0, 0xe4, 0xfd, 0xaf, 0x56, 0x12, 0x0b, 0x91, 0x30, 0x15,
- 0x04, 0xd2, 0x14, 0x80, 0x26, 0x90, 0x70, 0x18, 0xe0, 0xf5, 0x27,
- 0x90, 0x02, 0x29, 0xe0, 0xff, 0x90, 0x70, 0x19, 0xe0, 0xfe, 0xef,
- 0x5e, 0x90, 0x02, 0x29, 0xf0, 0x30, 0x47, 0x04, 0xaf, 0x27, 0x80,
- 0x04, 0xe5, 0x27, 0xf4, 0xff, 0x90, 0x02, 0x28, 0xef, 0xf0, 0xe5,
- 0x56, 0xf4, 0x70, 0x03, 0x02, 0x13, 0x29, 0x02, 0x13, 0x22, 0x90,
- 0x70, 0x10, 0xe0, 0xfe, 0x90, 0x70, 0x11, 0xe0, 0xfd, 0xed, 0xf8,
- 0xe6, 0xf5, 0x57, 0xfd, 0xaf, 0x56, 0x12, 0x0b, 0x91, 0x90, 0x04,
- 0x14, 0x74, 0x80, 0xf0, 0xe4, 0x90, 0x70, 0x13, 0xf0, 0xe5, 0x56,
- 0xf4, 0x70, 0x03, 0x02, 0x13, 0x29, 0x02, 0x13, 0x22, 0x90, 0x70,
- 0x10, 0xe0, 0xfe, 0x90, 0x70, 0x11, 0xe0, 0xfd, 0xed, 0xf5, 0x82,
- 0x8e, 0x83, 0xe0, 0xf5, 0x57, 0xfd, 0xaf, 0x56, 0x12, 0x0b, 0x91,
- 0x90, 0x04, 0x14, 0x74, 0x80, 0xf0, 0xe4, 0x90, 0x70, 0x13, 0xf0,
- 0xe5, 0x56, 0xf4, 0x70, 0x03, 0x02, 0x13, 0x29, 0x02, 0x13, 0x22,
- 0x90, 0x10, 0x00, 0xe0, 0xf5, 0x57, 0x90, 0x10, 0x02, 0xe0, 0xf5,
- 0x58, 0xa3, 0xe0, 0xf5, 0x59, 0xe5, 0x58, 0xb4, 0x70, 0x1e, 0xe5,
- 0x59, 0xb4, 0x30, 0x19, 0x90, 0x05, 0x08, 0xe0, 0x44, 0x01, 0xf0,
- 0xfd, 0x90, 0x05, 0x05, 0xe0, 0x54, 0xfb, 0xf0, 0x44, 0x04, 0xf0,
- 0xed, 0x54, 0xfe, 0x90, 0x05, 0x08, 0xf0, 0xe4, 0xf5, 0x4e, 0xf5,
- 0x4f, 0x75, 0x3a, 0xff, 0x75, 0x3c, 0xff, 0xad, 0x57, 0xaf, 0x56,
- 0x12, 0x0b, 0x91, 0x90, 0x04, 0x14, 0x74, 0x80, 0xf0, 0xe4, 0x90,
- 0x70, 0x13, 0xf0, 0xe5, 0x56, 0xf4, 0x60, 0x4b, 0x80, 0x42, 0x90,
- 0x70, 0x10, 0xe0, 0x24, 0xff, 0x92, 0x93, 0xe4, 0xfd, 0xaf, 0x56,
- 0x12, 0x0b, 0x91, 0x90, 0x04, 0x14, 0x74, 0x80, 0xf0, 0xe4, 0x90,
- 0x70, 0x13, 0xf0, 0xe5, 0x56, 0xf4, 0x60, 0x2a, 0x80, 0x21, 0x90,
- 0x70, 0x10, 0xe0, 0x24, 0xff, 0x92, 0x4a, 0xd2, 0x05, 0xad, 0x57,
- 0xaf, 0x56, 0x12, 0x0b, 0x91, 0x90, 0x04, 0x14, 0x74, 0x80, 0xf0,
- 0xe4, 0x90, 0x70, 0x13, 0xf0, 0xe5, 0x56, 0xf4, 0x60, 0x07, 0x90,
- 0x70, 0x25, 0xe0, 0x44, 0x01, 0xf0, 0x22, 0x22, 0xe5, 0x53, 0x70,
- 0x1a, 0x30, 0x60, 0x09, 0xb2, 0x4d, 0x30, 0x4d, 0x04, 0x05, 0x46,
- 0xc2, 0x04, 0xe5, 0x4f, 0x45, 0x4e, 0x60, 0x08, 0xe5, 0x4f, 0x15,
- 0x4f, 0x70, 0x02, 0x15, 0x4e, 0x22, 0x22, 0xc2, 0x42, 0xd3, 0x22,
- 0x30, 0x14, 0x30, 0x90, 0x70, 0x19, 0xe0, 0x55, 0x27, 0xff, 0x90,
- 0x70, 0x18, 0xe0, 0x4f, 0xf5, 0x27, 0x90, 0x02, 0x29, 0xe0, 0xff,
- 0x90, 0x70, 0x19, 0xe0, 0xfe, 0xef, 0x5e, 0x90, 0x02, 0x29, 0xf0,
- 0x30, 0x47, 0x04, 0xaf, 0x27, 0x80, 0x04, 0xe5, 0x27, 0xf4, 0xff,
- 0x90, 0x02, 0x28, 0xef, 0xf0, 0xc2, 0x14, 0x22, 0xc2, 0x4b, 0xc2,
- 0x4c, 0xe5, 0x44, 0x12, 0x0a, 0x9d, 0x13, 0xa5, 0x00, 0x14, 0x33,
- 0x04, 0x14, 0x2f, 0x08, 0x14, 0x0f, 0x10, 0x13, 0xb9, 0x20, 0x13,
- 0xd9, 0x60, 0x13, 0xea, 0xa0, 0x00, 0x00, 0x14, 0x35, 0x85, 0x48,
- 0x43, 0x85, 0x4a, 0x42, 0x85, 0x4c, 0x5e, 0xe5, 0x47, 0x64, 0x06,
- 0x60, 0x03, 0x02, 0x14, 0x35, 0x80, 0x1b, 0xe5, 0x48, 0xc4, 0x54,
- 0x0f, 0xf5, 0x43, 0xe5, 0x4a, 0xc4, 0x54, 0x0f, 0xf5, 0x42, 0xe5,
- 0x4c, 0xc4, 0x54, 0x0f, 0xf5, 0x5e, 0xe5, 0x47, 0x64, 0x06, 0x70,
- 0x61, 0x53, 0x43, 0x0f, 0x80, 0x5c, 0x85, 0x49, 0x43, 0x85, 0x4b,
- 0x42, 0x85, 0x4d, 0x5e, 0xe5, 0x47, 0x64, 0x06, 0x70, 0x4d, 0x80,
- 0x1b, 0xe5, 0x49, 0xc4, 0x54, 0x0f, 0xf5, 0x43, 0xe5, 0x4b, 0xc4,
- 0x54, 0x0f, 0xf5, 0x42, 0xe5, 0x4d, 0xc4, 0x54, 0x0f, 0xf5, 0x5e,
- 0xe5, 0x47, 0x64, 0x06, 0x70, 0x30, 0xe5, 0x43, 0x54, 0x0f, 0x44,
- 0x10, 0xf5, 0x43, 0x80, 0x26, 0xe5, 0x47, 0x64, 0x04, 0x60, 0x05,
- 0xe5, 0x47, 0xb4, 0x05, 0x06, 0x43, 0x5e, 0x04, 0x75, 0x42, 0x09,
- 0xe5, 0x47, 0xb4, 0x06, 0x10, 0xe5, 0x43, 0x54, 0x0f, 0x44, 0x30,
- 0xf5, 0x43, 0x80, 0x06, 0xd2, 0x4b, 0x80, 0x02, 0xd2, 0x4c, 0xe4,
- 0xf5, 0x25, 0xe5, 0x42, 0xc4, 0x54, 0xf0, 0xff, 0xe5, 0x43, 0x54,
- 0x0f, 0x4f, 0xf5, 0x5f, 0xd2, 0x60, 0x22, 0xd2, 0x15, 0xe5, 0x47,
- 0x24, 0xf5, 0x60, 0x0b, 0x24, 0xcb, 0x60, 0x07, 0x24, 0x40, 0x70,
- 0x06, 0xc2, 0x15, 0x22, 0x12, 0x17, 0x84, 0x12, 0x14, 0x6a, 0xc2,
- 0x15, 0xc2, 0xaf, 0xc2, 0x04, 0xd2, 0xaf, 0x22, 0xc2, 0xaf, 0x90,
- 0x04, 0x14, 0xe0, 0x54, 0x0e, 0x60, 0x04, 0xd2, 0x18, 0x80, 0x08,
- 0xe5, 0x4e, 0x45, 0x4f, 0x24, 0xff, 0x92, 0x18, 0xd2, 0xaf, 0x90,
- 0x04, 0x14, 0xe0, 0xa2, 0xe4, 0x92, 0x19, 0x74, 0x1e, 0xf0, 0xe5,
- 0x5f, 0x54, 0x0f, 0xf5, 0x2d, 0xe5, 0x25, 0x70, 0x13, 0x30, 0x18,
- 0x05, 0xe5, 0x5f, 0x20, 0xe5, 0x0b, 0x30, 0x19, 0x19, 0xe5, 0x5f,
- 0x54, 0x30, 0xff, 0xbf, 0x30, 0x11, 0xe5, 0x25, 0x70, 0x05, 0x75,
- 0x25, 0x0c, 0x80, 0x02, 0x15, 0x25, 0xd2, 0x6c, 0xd2, 0x6d, 0x80,
- 0x0f, 0xe5, 0x5f, 0x30, 0xe6, 0x06, 0xc2, 0x6c, 0xd2, 0x6d, 0x80,
- 0x04, 0xd2, 0x6c, 0xc2, 0x6d, 0xe5, 0x47, 0x64, 0x03, 0x70, 0x21,
- 0x30, 0x4b, 0x06, 0xc2, 0x6c, 0xd2, 0x6d, 0x80, 0x18, 0xe5, 0x25,
- 0x70, 0x03, 0x30, 0x4c, 0x11, 0xc2, 0x4c, 0xe5, 0x25, 0x70, 0x05,
- 0x75, 0x25, 0x07, 0x80, 0x02, 0x15, 0x25, 0xd2, 0x6c, 0xd2, 0x6d,
- 0xe5, 0x47, 0xb4, 0x09, 0x14, 0xe5, 0x44, 0x20, 0xe3, 0x0b, 0xe5,
- 0x3a, 0x64, 0x02, 0x60, 0x05, 0xe5, 0x3a, 0xb4, 0x03, 0x04, 0xc2,
- 0x6c, 0xd2, 0x6d, 0xe5, 0x47, 0xb4, 0x0a, 0x13, 0xe5, 0x3a, 0xb4,
- 0x01, 0x06, 0xc2, 0x6c, 0xd2, 0x6d, 0x80, 0x08, 0xe5, 0x3a, 0x70,
- 0x04, 0xd2, 0x6c, 0xc2, 0x6d, 0x20, 0x69, 0x07, 0xe5, 0x5e, 0x20,
- 0xe0, 0x02, 0xb2, 0x68, 0x20, 0x6b, 0x07, 0xe5, 0x5e, 0x20, 0xe1,
- 0x02, 0xb2, 0x6a, 0x20, 0x6d, 0x07, 0xe5, 0x5e, 0x20, 0xe2, 0x02,
- 0xb2, 0x6c, 0x75, 0x2e, 0x40, 0x20, 0x69, 0x04, 0xa2, 0x68, 0x80,
- 0x26, 0x30, 0x68, 0x06, 0xe5, 0x46, 0xa2, 0xe2, 0x80, 0x1d, 0xe5,
- 0x5e, 0x20, 0xe2, 0x04, 0x7f, 0x01, 0x80, 0x02, 0x7f, 0x00, 0xe5,
- 0x46, 0x54, 0xf0, 0xfe, 0xbe, 0xf0, 0x04, 0x7e, 0x01, 0x80, 0x02,
- 0x7e, 0x00, 0xee, 0x6f, 0x24, 0xff, 0x92, 0x73, 0x92, 0x72, 0x20,
- 0x6b, 0x04, 0xa2, 0x6a, 0x80, 0x26, 0x30, 0x6a, 0x06, 0xe5, 0x46,
- 0xa2, 0xe2, 0x80, 0x1d, 0xe5, 0x5e, 0x20, 0xe0, 0x04, 0x7f, 0x01,
- 0x80, 0x02, 0x7f, 0x00, 0xe5, 0x46, 0x54, 0xf0, 0xfe, 0xbe, 0xf0,
- 0x04, 0x7e, 0x01, 0x80, 0x02, 0x7e, 0x00, 0xee, 0x6f, 0x24, 0xff,
- 0x92, 0x75, 0x92, 0x74, 0x20, 0x6d, 0x04, 0xa2, 0x6c, 0x80, 0x26,
- 0xe5, 0x47, 0x64, 0x0a, 0x70, 0x22, 0x30, 0x6c, 0x06, 0xe5, 0x46,
- 0xa2, 0xe3, 0x80, 0x17, 0xe5, 0x3a, 0xb4, 0x01, 0x06, 0xe5, 0x46,
- 0xa2, 0xe3, 0x80, 0x34, 0xe5, 0x46, 0x20, 0xe4, 0x03, 0x30, 0xe5,
- 0x03, 0xd3, 0x80, 0x01, 0xc3, 0x80, 0x26, 0x30, 0x6c, 0x06, 0xe5,
- 0x46, 0xa2, 0xe2, 0x80, 0x1d, 0xe5, 0x5e, 0x20, 0xe1, 0x04, 0x7f,
- 0x01, 0x80, 0x02, 0x7f, 0x00, 0xe5, 0x46, 0x54, 0xf0, 0xfe, 0xbe,
- 0xf0, 0x04, 0x7e, 0x01, 0x80, 0x02, 0x7e, 0x00, 0xee, 0x6f, 0x24,
- 0xff, 0x92, 0x71, 0x92, 0x70, 0x90, 0x10, 0x00, 0xe0, 0x90, 0x10,
- 0x2c, 0xf0, 0x90, 0x10, 0x03, 0xe0, 0xc3, 0x94, 0x30, 0x40, 0x14,
- 0xa2, 0x71, 0x92, 0x77, 0xa2, 0x70, 0x92, 0x76, 0xe5, 0x2e, 0x13,
- 0x13, 0x54, 0x3f, 0xf5, 0x2e, 0xc2, 0x77, 0xd2, 0x76, 0x90, 0x10,
- 0x2f, 0xe5, 0x2e, 0xf0, 0xe5, 0x47, 0x64, 0x06, 0x70, 0x39, 0x90,
- 0x02, 0x29, 0xe0, 0x54, 0xfe, 0xf0, 0xe5, 0x43, 0xc4, 0x54, 0x0f,
- 0x14, 0x60, 0x0c, 0x24, 0xfe, 0x60, 0x0c, 0x24, 0x03, 0x70, 0x13,
- 0xc2, 0x38, 0x80, 0x0f, 0xd2, 0x38, 0x80, 0x0b, 0xe5, 0x46, 0x30,
- 0xe2, 0x03, 0xd3, 0x80, 0x01, 0xc3, 0x92, 0x38, 0x30, 0x47, 0x05,
- 0xaf, 0x27, 0x02, 0x17, 0x7e, 0xe5, 0x27, 0xf4, 0xff, 0x02, 0x17,
- 0x7e, 0xe5, 0x47, 0x64, 0x07, 0x60, 0x0f, 0xe5, 0x47, 0x64, 0x08,
- 0x60, 0x09, 0xe5, 0x47, 0x64, 0x09, 0x60, 0x03, 0x02, 0x16, 0xfd,
- 0x90, 0x02, 0x29, 0xe0, 0x54, 0xfc, 0xf0, 0xe5, 0x3a, 0x14, 0x60,
- 0x22, 0x14, 0x60, 0x25, 0x14, 0x60, 0x2d, 0x24, 0xfc, 0x60, 0x49,
- 0x24, 0xf9, 0x60, 0x14, 0x24, 0x0e, 0x70, 0x50, 0xe5, 0x46, 0x13,
- 0x13, 0x54, 0x3f, 0x75, 0xf0, 0x03, 0x84, 0xe5, 0xf0, 0x24, 0xff,
- 0x80, 0x3a, 0xd2, 0x39, 0xc2, 0x38, 0x80, 0x3e, 0xe5, 0x46, 0x30,
- 0xe2, 0x03, 0xd3, 0x80, 0x1d, 0xc3, 0x80, 0x1a, 0xe5, 0x46, 0x30,
- 0xe2, 0x0d, 0x54, 0x38, 0xc3, 0x94, 0x30, 0x50, 0x06, 0x7e, 0x00,
- 0x7f, 0x01, 0x80, 0x04, 0x7e, 0x00, 0x7f, 0x00, 0xee, 0x4f, 0x24,
- 0xff, 0x92, 0x38, 0xc2, 0x39, 0x80, 0x13, 0xe5, 0x46, 0x30, 0xe2,
Home |
Main Index |
Thread Index |
Old Index