Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The following table specify if each binary has been matched or not, and if it ha
| `uopt` | :x: | :x: | :x: | :x: |
| `ugen` | :x: | :x: | :heavy_check_mark: | :x: |
| `as1` | :x: | :x: | :x: | :x: |
| `as0` | :heavy_check_mark: | :x: | :x: | :x: |
| `as0` | :heavy_check_mark: | :x: | :heavy_check_mark: | :x: |
| `ld` | :x: | :x: | :x: | :x: |
| `uld` | :x: | :x: | :x: | :x: |
| `umerge` | :x: | :x: | :x: | :x: |
Expand Down
6 changes: 3 additions & 3 deletions src/ugen/aio.p
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ var
current_filen: integer := -2;
second_dli: boolean := False;

#define ST_COPY(ustr, st) len := 1; while (st^[len] <> chr(0)) do begin ustr[len] := st^[len]; len := len + 1 end;
#define ST_STRING_COPY(ustr, st) len := 1; while (st^[len] <> chr(0)) do begin ustr[len] := st^[len]; len := len + 1 end;

procedure put_integer_ws(var pFile: text; val: integer);
begin
Expand Down Expand Up @@ -157,7 +157,7 @@ begin
if (str = pointer(-1)) then begin
write(pFile, "$$", idn:1);
end else begin
ST_COPY(sp40.ss, str);
ST_STRING_COPY(sp40.ss, str);
end;

write(pFile, sp40.ss:0);
Expand Down Expand Up @@ -439,7 +439,7 @@ begin
for len := 1 to FileNameLen do begin
source_file_name[len] := ' ';
end;
ST_COPY(source_file_name, str);
ST_STRING_COPY(source_file_name, str);
if (source_file_name[1] = ' ') then begin
report_error(Internal, 977, "aio.p", "file name is null");
return;
Expand Down
Loading
Loading