changed: library file extension to gsc
This commit is contained in:
parent
17fceeff4b
commit
f142f6dc30
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
import "def.gem"
|
import "def.gsc"
|
||||||
|
|
||||||
type unsigned int: bool
|
type unsigned int: bool
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# | Generic Input/Output |
|
# | Generic Input/Output |
|
||||||
# `----------------------------------------`
|
# `----------------------------------------`
|
||||||
|
|
||||||
import "def.gem"
|
import "def.gsc"
|
||||||
|
|
||||||
# platform specific handle to an I/O device
|
# platform specific handle to an I/O device
|
||||||
# can be a file, buffer, window or something else
|
# can be a file, buffer, window or something else
|
|
@ -6,7 +6,7 @@
|
||||||
# | Memory Management |
|
# | Memory Management |
|
||||||
# `----------------------------------------`
|
# `----------------------------------------`
|
||||||
|
|
||||||
import "def.gem"
|
import "def.gsc"
|
||||||
|
|
||||||
# Allocate `len` bytes of heap memory
|
# Allocate `len` bytes of heap memory
|
||||||
# Returns a pointer to the memory as `ptr`
|
# Returns a pointer to the memory as `ptr`
|
|
@ -6,7 +6,7 @@
|
||||||
# | Operating System |
|
# | Operating System |
|
||||||
# `----------------------------------------`
|
# `----------------------------------------`
|
||||||
|
|
||||||
import "def.gem"
|
import "def.gsc"
|
||||||
|
|
||||||
# Return a hard coded C string identifying the underlying operating system
|
# Return a hard coded C string identifying the underlying operating system
|
||||||
# Will return one of the following:
|
# Will return one of the following:
|
|
@ -7,10 +7,10 @@
|
||||||
# `----------------------------------------`
|
# `----------------------------------------`
|
||||||
|
|
||||||
# standard type definitions
|
# standard type definitions
|
||||||
import "def.gem"
|
import "def.gsc"
|
||||||
|
|
||||||
# I/O operations
|
# I/O operations
|
||||||
import "io.gem"
|
import "io.gsc"
|
||||||
|
|
||||||
# memory management
|
# memory management
|
||||||
import "mem.gem"
|
import "mem.gsc"
|
Loading…
Reference in New Issue