Skip to content

Commit

Permalink
fix ':' -> ';'
Browse files Browse the repository at this point in the history
  • Loading branch information
tebe6502 committed Sep 13, 2024
1 parent ce3105a commit 653b4d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blibs/xbios.pas
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ procedure xBiosReadSector(sector: word); assembler;
};
end;

procedure xBiosFindEntry(var filename: TString): assembler;
procedure xBiosFindEntry(var filename: TString); assembler;
asm {
txa:pha
mva #0 xBiosIOresult
Expand All @@ -821,7 +821,7 @@ procedure xBiosFindEntry(var filename: TString): assembler;
};
end;

procedure xBiosSetBufferSize(size: byte): assembler;
procedure xBiosSetBufferSize(size: byte); assembler;
asm {
txa:pha
lda #$ff
Expand Down

0 comments on commit 653b4d9

Please sign in to comment.