This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: bin/ocra | |
| =================================================================== | |
| --- bin/ocra (revision 2cb11c915af52197f90abd944d84219305d8c602) | |
| +++ bin/ocra (revision ) | |
| @@ -181,7 +181,7 @@ | |
| IGNORE_GEMFILES = %r{( | |
| # Auxiliary files in the root of the gem | |
| - ^(\.\/)?(History|Install|Manifest|README|Licen[sc]e|Contributors|ChangeLog|BSD|GPL).*$ | | |
| + ^(\.\/)?(History|Install|Manifest|README|CHANGES|Licen[sc]e|Contributors|ChangeLog|BSD|GPL).*$ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static const char *PL_START = "000000000000FACEB003AABBCCDD"; | |
| static const char *PL3_START = "505347726F6F7665"; | |
| static const char *PL3_END = "1201000200000008AAAABBBB"; | |
| unsigned int PL_SIZE = 3822; | |
| int hex2bin(char *hex_file, char *bin_file) { | |
| FILE *infile, *outfile; | |
| char line[100]; | |
| char buffer[50*1024]; | |
| char outc = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use strict; | |
| my $VERSION = '1.0'; | |
| my $PL_START = "000000000000FACEB003AABBCCDD"; | |
| my $PL3_START ="505347726F6F7665"; | |
| my $PL3_END = "1201000200000008AAAABBBB"; | |
| my $PL_SIZE = 3822; | |
| my $in; |
NewerOlder