Skip to content

Commit

Permalink
Native ARM Co Pro: Fix regression in OS_Args SWI
Browse files Browse the repository at this point in the history
Change-Id: Ia0d53b43fa9de7e3eba7e9577282fa0dae7e486c
  • Loading branch information
hoglet67 committed Sep 3, 2021
1 parent d623e6a commit 6275cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tube-swi.c
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ static void tube_Args(unsigned int *reg) {
// Y = R1 is the file namdle
sendByte(R2_ID, (unsigned char )reg[1]);
// R2 is the 4 byte data block
sendWord(R2_ID, (unsigned char )reg[2]);
sendWord(R2_ID, reg[2]);
// A = R0 is the operation code
sendByte(R2_ID, (unsigned char )reg[0]);
// get back A
Expand Down

0 comments on commit 6275cc5

Please sign in to comment.