aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFenrir <[email protected]>2018-02-11 20:54:37 -0700
committerFenrir <[email protected]>2018-02-11 20:54:37 -0700
commit3ad0909b258e7d3ace1b380fbe838c55c97e0081 (patch)
tree676f0a5d8a92b6e8f8a4f3a1ef70a33707372034
parentAdd list of supported modules (diff)
downloadctru-rs-3ad0909b258e7d3ace1b380fbe838c55c97e0081.tar.xz
ctru-rs-3ad0909b258e7d3ace1b380fbe838c55c97e0081.zip
Reorganize the list a bit
-rw-r--r--ctr-std/README.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/ctr-std/README.md b/ctr-std/README.md
index 5d91f90..1cd8aa7 100644
--- a/ctr-std/README.md
+++ b/ctr-std/README.md
@@ -34,11 +34,9 @@ This library aims to mimick the Rust standard library's public interface as clos
* `iter`
* `marker`
* `mem`
-* `net` Anything not involving IPv6 should work after initializing the `Soc` service in `ctru-rs`
* `num`
* `ops`
* `option`
-* `os` The modules in here should work, but they aren't well-tested
* `panic`
* `path`
* `prelude`
@@ -49,8 +47,8 @@ This library aims to mimick the Rust standard library's public interface as clos
* `str`
* `string`
* `sync`
-* `thread` Threads are able to be spawned, but without the ability to pin to a specific core or set thread priority
* `time`
+* `thread` Threads are able to be spawned, but without the ability to pin to a specific core or set thread priority
* `u8`
* `u16`
* `u32`
@@ -65,6 +63,10 @@ This library aims to mimick the Rust standard library's public interface as clos
* `raw`
* `u128`
-# Non-functional or partially functional modules
+# Partially working modules
* `env` argc/argv can be implemented but have not been yet
-* `process` Unable to be implemented
+* `net` Anything not involving IPv6 should work after initializing the `Soc` service in `ctru-rs`
+* `os` The modules in here should work, but they aren't well-tested
+
+# Non-functional modules
+* `process` Unable to be implemented due to platform incompatibilities