diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-11-05 22:30:56 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-11-05 22:30:56 +0100 |
commit | ef2d3033c76a80e137173321b3bbd5fb09b4a3be (patch) | |
tree | 76028aa5467b988f1d9a1ce745bd2b405ec07fdc /src/main.rs | |
parent | 1128766f9133c3c3cfc2a1c9e58c21ece509ea5b (diff) | |
download | rv64i-linux-user-no-std-ef2d3033c76a80e137173321b3bbd5fb09b4a3be.tar.gz rv64i-linux-user-no-std-ef2d3033c76a80e137173321b3bbd5fb09b4a3be.zip |
add README and LICENSE
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 9b48fd7..7ece64b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ #![no_std] #![no_main] -use user_sw::{eprintln, println, sys}; +use rv64i_linux_user_no_std::{eprintln, println, sys}; fn main() { println!("Hello {} from rust main().", 1337); |