Compare commits

..

No commits in common. "7ac2a889744ebf14d044f950cc6fc5adda22a363" and "5facdb095c2758946e96b3aa3655a6d2c9effd49" have entirely different histories.

5 changed files with 7 additions and 7 deletions

View File

@ -90,9 +90,9 @@ or create a shell script (in `/usr/local/bin`, etc)
`/usr/local/bin/AsmIIgs`:
#!/bin/sh
#!/usr/bin/sh
exec mpw AsmIIgs "$@"
exec mpw AsmIIgs $@
mpw uses the MPW `$Commands` variable to find the command, similar to `$PATH` on Unix. If the `$Commands` variable

View File

@ -84,9 +84,9 @@ or create a shell script (in /usr/local/bin, etc)
/usr/local/bin/AsmIIgs:
#!/bin/sh
#!/usr/bin/sh
exec mpw AsmIIgs "$@"
exec mpw AsmIIgs $@
mpw looks in the current directory and then in the $MPW:Tools: directory
for the command to run. The MPW $Commands variable is not yet supported.

View File

@ -74,7 +74,7 @@ namespace MPW
int fd = f.cookie;
ssize_t size;
Log(" read(%04x, %08x, %08x)\n", fd, f.buffer, f.count);
Log(" read(%04x, %08x, %08x)", fd, f.buffer, f.count);
size = OS::Internal::FDEntry::read(fd, memoryPointer(f.buffer), f.count);
//Log(" -> %ld\n", size);

View File

@ -505,7 +505,7 @@ namespace ToolBox {
*/
Push<4>(returnPC == 0 ? cpuGetPC() : returnPC);
Log("$04x *%s - $%08x\n", trap, TrapName(trap), address);
Log("$04x *%s - $%08x", trap, TrapName(trap), address);
cpuInitializeFromNewPC(address);
return;
}

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/sh
infile="$1"