Skip to content

Commit c6486c4

Browse files
committed
Move TLSF to stdlib, see #15
1 parent 9e92849 commit c6486c4

File tree

16 files changed

+4716
-544
lines changed

16 files changed

+4716
-544
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ A few early examples to get an idea:
2121
* **[PSON decoder](./examples/pson)**<br />
2222
A simple decoder for the PSON binary format.
2323

24-
* **[TLSF memory allocator](./examples/tlsf)**<br />
25-
An implementation of the TLSF memory allocator.
26-
27-
* **[μgc garbage collector](./examples/ugc)**<br />
28-
A port of the μgc garbage collector library.
29-
3024
Or browse the [compiler tests](./tests/compiler) for a more in-depth overview of what's supported already. One of them is a [showcase](./tests/compiler/showcase.ts).
3125

3226
Installation

bin/asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22
const asc = module.exports = require("./asc.js");
3-
if (process.argv[1] === __filename)
3+
if (/\basc$/.test(process.argv[1]))
44
process.exitCode = asc.main(process.argv.slice(2));

examples/tlsf/README.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

examples/tlsf/assembly/tlsf.ts

Lines changed: 0 additions & 491 deletions
This file was deleted.

examples/tlsf/index.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/tlsf/package.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)