mirror of
https://github.com/byteworksinc/DumpObj.git
synced 2024-11-27 18:49:35 +00:00
2.0.2 b1, from the Opus CD
This commit is contained in:
parent
ebab9328f6
commit
a46492f4c0
17
DumpOBJ.cc
17
DumpOBJ.cc
@ -18,6 +18,13 @@
|
|||||||
*
|
*
|
||||||
* 1. Added resource fork.
|
* 1. Added resource fork.
|
||||||
*
|
*
|
||||||
|
****************************************************************
|
||||||
|
*
|
||||||
|
* Version 2.0.2, June 96
|
||||||
|
* Mike Westerfield
|
||||||
|
*
|
||||||
|
* 1. Fixed hexadecimal dump bug.
|
||||||
|
*
|
||||||
****************************************************************/
|
****************************************************************/
|
||||||
|
|
||||||
#pragma keep "DumpOBJ"
|
#pragma keep "DumpOBJ"
|
||||||
@ -605,6 +612,8 @@ switch(kind & 31) {
|
|||||||
*
|
*
|
||||||
***************************************************************/
|
***************************************************************/
|
||||||
|
|
||||||
|
/* debug */
|
||||||
|
|
||||||
BOOLEAN PutHeader (void)
|
BOOLEAN PutHeader (void)
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -612,7 +621,7 @@ long mark;
|
|||||||
int kind2;
|
int kind2;
|
||||||
|
|
||||||
mark = ftell(input); /* save the file marker */
|
mark = ftell(input); /* save the file marker */
|
||||||
if (GetHead(input)) {
|
if (GetHead(input)) {
|
||||||
Error(2," ");
|
Error(2," ");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
@ -2373,9 +2382,9 @@ while (NextSeg()) {
|
|||||||
***************************************************************/
|
***************************************************************/
|
||||||
|
|
||||||
void DpHex (void)
|
void DpHex (void)
|
||||||
|
|
||||||
{
|
{
|
||||||
long mark;
|
long mark; /* next segment mark */
|
||||||
long ch = 0;
|
long ch = 0;
|
||||||
char chline[20];
|
char chline[20];
|
||||||
int k, i, space;
|
int k, i, space;
|
||||||
@ -2720,7 +2729,7 @@ return GetList(i, argc, argv);
|
|||||||
void Initialize (void)
|
void Initialize (void)
|
||||||
|
|
||||||
{
|
{
|
||||||
puts("DumpOBJ 2.0.1\n"); /* write the header */
|
puts("DumpOBJ 2.0.2 B1\n"); /* write the header */
|
||||||
|
|
||||||
format = /* dump in opcode format */
|
format = /* dump in opcode format */
|
||||||
namc = /* no names in namelist */
|
namc = /* no names in namelist */
|
||||||
|
@ -12,11 +12,11 @@ resource rVersion(1) {
|
|||||||
{
|
{
|
||||||
2, /* Major revision */
|
2, /* Major revision */
|
||||||
0, /* Minor revision */
|
0, /* Minor revision */
|
||||||
1, /* Bug version */
|
2, /* Bug version */
|
||||||
release, /* Release stage */
|
beta, /* Release stage */
|
||||||
0, /* Non-final release # */
|
1, /* Non-final release # */
|
||||||
},
|
},
|
||||||
verUS, /* Region code */
|
verUS, /* Region code */
|
||||||
"DumpOBJ", /* Short version number */
|
"DumpOBJ", /* Short version number */
|
||||||
"Copyright 1994, Byte Works, Inc." /* Long version number */
|
"Copyright 1996, Byte Works, Inc." /* Long version number */
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user