⚲
Project
General
Profile
Sign in
Home
Projects
Help
Search
:
EclaireXL
All Projects
EclaireXL
Overview
Activity
Issues
News
Documents
Wiki
Forums
Files
Repository
Download (266 Bytes)
Statistics
| Revision:
repo2
/
atari_chips
/
pokeyv2
/
addhash.pl
@ 1421
View
History
Annotate
#!/usr/bin/perl -w
use
strict
;
my
$filename
=
shift
@ARGV
;
my
$hashcode
=
shift
@ARGV
;
my
$dechashcode
=
hex
(
substr
(
$hashcode
,
2
,
2
)
.
substr
(
$hashcode
,
0
,
2
));
open
FH
,"
+<
$filename
";
binmode
FH
;
seek
FH
,
0
,
2
;
my
$val
=
pack
"
n
",
$dechashcode
;
print
FH
$val
;
close
FH
;
« Previous
1
2
3
4
5
6
…
109
Next »
(4-4/109)
Loading...