Skip to content

Commit 2a61400

Browse files
authored
[msdos] fix call to network_unit. (#37)
1 parent ab38c4a commit 2a61400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msdos/src/fn_network/network_open.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
uint8_t network_open(const char* devicespec, uint8_t mode, uint8_t trans)
77
{
8-
uint8_t device = network_unit(devicespec);
8+
uint8_t device = network_unit(devicespec) + 0x70;
99

1010
return int_f5_write(device,'O',mode,trans,devicespec,256);
1111
}

0 commit comments

Comments
 (0)