• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSEH A D05-Sep-201817.7 KiB340281

README.mdH A D05-Sep-2018831 2518

fontdump.1H A D05-Sep-2018415 1716

fontdump.cH A D05-Sep-20183.2 KiB152109

makefileH A D03-May-2022237 118

ree.8H A D03-May-2022397 1715

ree.cH A D05-Sep-20181.9 KiB9353

ree.shH A D05-Sep-20181.6 KiB7239

ree_bsdpatch.diffH A D05-Sep-20182.7 KiB7362

README.md

1# ree
2Extract BIOS ROM extensions
3
4includes the tool `fontdump` (to extract the fonts from your video bios roms)
5
6make sure you can read /dev/mem (be root)
7chmod +x ree
8./ree
9
10or use the c version (much faster, and does checksum on the rom extension)
11make # or gcc ree -o ree.bin
12./ree.bin
13
14will scan your system memory, address c0000 - f0000 in 512 byte steps for
15identification of rom extensions (55,aa), if found it will calculate
16its size (byte after id, multiplied by 512) and saves that to a .rom file.
17
18ported to shell from the pascal version of 1997
19original (dos/win9x) version is ree.exe and ree.pas in ree.zip
20
21note
22as most system bios are bigger than 64k nowadays (128k or 256k) and them
23are only 64k memory window reserved, they are not dumped completely, if
24anyone knows how to dump the completely, please contact me
25