diff --git a/www/tools.t b/www/tools.t
index c1c72b6044..ad469ecba9 100644
--- a/www/tools.t
+++ b/www/tools.t
@@ -22,18 +22,18 @@ The data is then spread over four memory segments. The two least significant bit
I've written a small utility to descramble the firmware files:
-- descramble.c - 1835 bytes - The source code (pure ANSI C, should work everywhere). GPL licensed.
-
- descramble - 4280 bytes - Dynamically linked i386 linux executable
-
- descramble.static.bz2 - 176015 bytes - bzip2 compressed statically linked i386 linux executable
-
- descramble.exe - 45056 bytes - win32 executable
+
- descramble.c - 1835 bytes - The source code (pure ANSI C, should work everywhere). GPL licensed.
+
- descramble - 4280 bytes - Dynamically linked i386 linux executable
+
- descramble.static.bz2 - 176015 bytes - bzip2 compressed statically linked i386 linux executable
+
- descramble.exe - 45056 bytes - win32 executable
...and one to scramble files:
-- scramble.c - 2242 bytes - The source code (pure ANSI C, should work everywhere). GPL licensed.
-
- scramble - 4376 bytes - Dynamically linked i386 linux executable
-
- scramble.static.bz2 - 176117 bytes - bzip2 compressed statically linked i386 linux executable
-
- scramble.exe - 93385 bytes - win32 executable
+
- scramble.c - 2242 bytes - The source code (pure ANSI C, should work everywhere). GPL licensed.
+
- scramble - 4376 bytes - Dynamically linked i386 linux executable
+
- scramble.static.bz2 - 176117 bytes - bzip2 compressed statically linked i386 linux executable
+
- scramble.exe - 93385 bytes - win32 executable
Disassembler
@@ -41,10 +41,10 @@ The data is then spread over four memory segments. The two least significant bit
I found a nice public domain SH-1/SH-2 disassembler written by Bart Trzynadlowski, called sh2d:
Update: I've added address lookup and register name translation to the disassembler (2001-12-09)
-- sh2d.c - 28 kB - Source code
-
- sh2d - 15 kB - Dynamically linked i386 linux executable
-
- sh2d.static.bz2 - 170 kB - bzip2 compressed statically linked i386 linux executable
-
- sh2d.exe - 40 kB - win32 executable (original version; no lookup)
+
- sh2d.c - 28 kB - Source code
+
- sh2d - 15 kB - Dynamically linked i386 linux executable
+
- sh2d.static.bz2 - 170 kB - bzip2 compressed statically linked i386 linux executable
+
- sh2d.exe - 40 kB - win32 executable (original version; no lookup)
Compiler