Skip to content

Commit

Permalink
BUGFIX: Use our console output handler for the C_WRITESTRING function
Browse files Browse the repository at this point in the history
  • Loading branch information
skx committed Jun 25, 2024
1 parent b6a172a commit de6c29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpm/cpm_bdos.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func BdosSysCallWriteString(cpm *CPM) error {

c := cpm.Memory.Get(addr)
for c != '$' {
fmt.Printf("%c", c)
cpm.output.PutCharacter(c)
addr++
c = cpm.Memory.Get(addr)
}
Expand Down

0 comments on commit de6c29d

Please sign in to comment.