Browse Source

Fix semihosting's SYS_CLOSE nr.

refs: http://www.keil.com/support/man/docs/armcc/armcc_pge1358787051159.htm
Hiroki Noda 7 years ago
parent
commit
28a3d990eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/nr.rs

+ 1 - 1
src/nr.rs

@@ -4,7 +4,7 @@
 #![allow(missing_docs)]
 
 pub const CLOCK: usize = 0x10;
-pub const CLOSE: usize = 0x05;
+pub const CLOSE: usize = 0x02;
 pub const ELAPSED: usize = 0x30;
 pub const ERRNO: usize = 0x13;
 pub const FLEN: usize = 0x0c;