home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.whtech.com
/
ftp.whtech.com.7z
/
ftp.whtech.com
/
emulators
/
v9t9
/
linux
/
sources
/
V9t9
/
tools
/
Forth
/
romaddr.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
2006-10-19
|
221 b
|
10 lines
#
# Get ROM address from console ROM image
@ignore=();
sysread(STDIN,$ignore,0x4A) || die;
sysread(STDIN,$addrbyte0,1) || die;
sysread(STDIN,$addrbyte1,1) || die;
$addr=(ord($addrbyte0)<<8)+ord($addrbyte1);
print $addr;