forked from AbleOS/ableos
removing deprecated rel:
path prefix
This commit is contained in:
parent
0bc757164f
commit
5f59f05dce
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -390,7 +390,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hbbytecode"
|
name = "hbbytecode"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#ece9bb8bf21507b5d2a7c870f55aa2e9c5ab9f26"
|
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#4849807353675c58d819a01569a613a06372304e"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hbbytecode"
|
name = "hbbytecode"
|
||||||
|
@ -400,7 +400,7 @@ source = "git+https://git.ablecorp.us/ableos/holey-bytes.git#4a9b9de87fd56a6bbd5
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hblang"
|
name = "hblang"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#ece9bb8bf21507b5d2a7c870f55aa2e9c5ab9f26"
|
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#4849807353675c58d819a01569a613a06372304e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hbvm 0.1.0 (git+https://git.ablecorp.us/AbleOS/holey-bytes.git)",
|
"hbvm 0.1.0 (git+https://git.ablecorp.us/AbleOS/holey-bytes.git)",
|
||||||
]
|
]
|
||||||
|
@ -408,7 +408,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hbvm"
|
name = "hbvm"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#ece9bb8bf21507b5d2a7c870f55aa2e9c5ab9f26"
|
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#4849807353675c58d819a01569a613a06372304e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hbbytecode 0.1.0 (git+https://git.ablecorp.us/AbleOS/holey-bytes.git)",
|
"hbbytecode 0.1.0 (git+https://git.ablecorp.us/AbleOS/holey-bytes.git)",
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
stn := @use("rel:../../stn/src/lib.hb");
|
stn := @use("../../stn/src/lib.hb");
|
||||||
.{string, memory, buffer} := stn
|
.{string, memory, buffer} := stn
|
||||||
|
|
||||||
dt_get := fn(query: ^u8): int {
|
dt_get := fn(query: ^u8): int {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
stn := @use("rel:../../stn/src/lib.hb");
|
stn := @use("../../stn/src/lib.hb");
|
||||||
.{string, memory, buffer} := stn
|
.{string, memory, buffer} := stn
|
||||||
|
|
||||||
input := @use("rel:../../intouch/src/lib.hb")
|
input := @use("../../intouch/src/lib.hb")
|
||||||
|
|
||||||
WindowID := struct {
|
WindowID := struct {
|
||||||
host_id: int,
|
host_id: int,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
structures := @use("rel:structures.hb")
|
structures := @use("structures.hb")
|
||||||
version := @use("rel:version.hb")
|
version := @use("version.hb")
|
||||||
|
|
||||||
// Refer to here https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkApplicationInfo.html
|
// Refer to here https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkApplicationInfo.html
|
||||||
ApplicationInfo := struct {
|
ApplicationInfo := struct {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
application := @use("rel:application.hb");
|
application := @use("application.hb");
|
||||||
.{ApplicationInfo} := application
|
.{ApplicationInfo} := application
|
||||||
|
|
||||||
structures := @use("rel:structures.hb")
|
structures := @use("structures.hb")
|
||||||
errors := @use("rel:errors.hb")
|
errors := @use("errors.hb")
|
||||||
|
|
||||||
// https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkInstanceCreateInfo.html
|
// https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkInstanceCreateInfo.html
|
||||||
InstanceCreateInfo := struct {
|
InstanceCreateInfo := struct {
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
application := @use("rel:application.hb")
|
application := @use("application.hb")
|
||||||
|
|
||||||
results := @use("rel:results.hb")
|
results := @use("results.hb")
|
||||||
errors := @use("rel:errors.hb")
|
errors := @use("errors.hb")
|
||||||
|
|
||||||
offsets := @use("rel:offset.hb")
|
offsets := @use("offset.hb")
|
||||||
extends := @use("rel:extends.hb")
|
extends := @use("extends.hb")
|
||||||
|
|
||||||
rect := @use("rel:rect.hb")
|
rect := @use("rect.hb")
|
||||||
structures := @use("rel:structures.hb")
|
structures := @use("structures.hb")
|
||||||
instance := @use("rel:instance.hb")
|
instance := @use("instance.hb")
|
||||||
|
|
||||||
version := @use("rel:version.hb")
|
version := @use("version.hb")
|
||||||
|
|
||||||
init_vulkan := fn(): int {
|
init_vulkan := fn(): int {
|
||||||
return errors.IncompatibleDriver
|
return errors.IncompatibleDriver
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
offsets := @use("rel:offset.hb")
|
offsets := @use("offset.hb")
|
||||||
extends := @use("rel:extends.hb")
|
extends := @use("extends.hb")
|
||||||
|
|
||||||
Rect2D := struct {
|
Rect2D := struct {
|
||||||
offset: offsets.Offset2D,
|
offset: offsets.Offset2D,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
keycodes := @use("rel:keycodes.hb");
|
keycodes := @use("keycodes.hb");
|
||||||
.{KeyCode} := keycodes
|
.{KeyCode} := keycodes
|
||||||
|
|
||||||
MouseEvent := struct {
|
MouseEvent := struct {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
stn := @use("rel:../../stn/src/lib.hb");
|
stn := @use("../../stn/src/lib.hb");
|
||||||
.{string, memory, buffer} := stn
|
.{string, memory, buffer} := stn
|
||||||
|
|
||||||
PCIAddress := struct {
|
PCIAddress := struct {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
svga := @use("rel:svga.hb")
|
svga := @use("svga.hb")
|
||||||
software := @use("rel:software.hb")
|
software := @use("software.hb")
|
||||||
|
|
||||||
// default mode
|
// default mode
|
||||||
mode := software
|
mode := software
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.{math, memory} := @use("../../stn/src/lib.hb");
|
.{math, memory} := @use("../../stn/src/lib.hb");
|
||||||
.{dt_get} := @use("../../dt_api/src/lib.hb");
|
.{dt_get} := @use("../../dt_api/src/lib.hb");
|
||||||
.{IVec2} := @use("rel:lib.hb")
|
.{IVec2} := @use("lib.hb")
|
||||||
|
|
||||||
Color := struct {b: u8, g: u8, r: u8, a: u8}
|
Color := struct {b: u8, g: u8, r: u8, a: u8}
|
||||||
white := Color.(255, 255, 255, 255)
|
white := Color.(255, 255, 255, 255)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.{IVec2} := @use("rel:lib.hb")
|
.{IVec2} := @use("lib.hb")
|
||||||
// .{pci, memory, string, log} := @use("../../stn/src/lib.hb");
|
// .{pci, memory, string, log} := @use("../../stn/src/lib.hb");
|
||||||
|
|
||||||
Color := struct {b: u8, g: u8, r: u8, a: u8}
|
Color := struct {b: u8, g: u8, r: u8, a: u8}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
string := @use("rel:string.hb")
|
string := @use("string.hb")
|
||||||
|
|
||||||
receive_message := fn(buffer_id: int, memory_map_location: ^u8, length: int): ^u8 {
|
receive_message := fn(buffer_id: int, memory_map_location: ^u8, length: int): ^u8 {
|
||||||
return @eca(4, buffer_id, memory_map_location, length)
|
return @eca(4, buffer_id, memory_map_location, length)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
acs := @use("rel:acs.hb");
|
acs := @use("acs.hb");
|
||||||
.{DiskID, FileID} := acs
|
.{DiskID, FileID} := acs
|
||||||
|
|
||||||
// Paths without a node-disk component are to be treated as local files.
|
// Paths without a node-disk component are to be treated as local files.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
acs := @use("rel:acs.hb")
|
acs := @use("acs.hb")
|
||||||
|
|
||||||
string := @use("rel:string.hb")
|
string := @use("string.hb")
|
||||||
log := @use("rel:log.hb")
|
log := @use("log.hb")
|
||||||
memory := @use("rel:memory.hb")
|
memory := @use("memory.hb")
|
||||||
buffer := @use("rel:buffer.hb")
|
buffer := @use("buffer.hb")
|
||||||
math := @use("rel:math.hb")
|
math := @use("math.hb")
|
||||||
random := @use("rel:random.hb")
|
random := @use("random.hb")
|
||||||
file := @use("rel:file_io.hb")
|
file := @use("file_io.hb")
|
|
@ -1,5 +1,5 @@
|
||||||
string := @use("rel:string.hb")
|
string := @use("string.hb")
|
||||||
buffer := @use("rel:buffer.hb")
|
buffer := @use("buffer.hb")
|
||||||
|
|
||||||
log := fn(message: ^u8, level: u8): void {
|
log := fn(message: ^u8, level: u8): void {
|
||||||
message_length := @inline(string.length, message);
|
message_length := @inline(string.length, message);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
attributes := @use("rel:attributes.hb")
|
attributes := @use("attributes.hb")
|
||||||
datetime := @use("rel:datetime.hb")
|
datetime := @use("datetime.hb")
|
||||||
|
|
||||||
FileName := [u8; 11]
|
FileName := [u8; 11]
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
stn := @use("../../../libraries/stn/src/lib.hb");
|
stn := @use("../../../libraries/stn/src/lib.hb");
|
||||||
.{string, memory, buffer, log} := stn
|
.{string, memory, buffer, log} := stn
|
||||||
|
|
||||||
attributes := @use("rel:attributes.hb")
|
attributes := @use("attributes.hb")
|
||||||
datetime := @use("rel:datetime.hb")
|
datetime := @use("datetime.hb")
|
||||||
directory := @use("rel:file.hb")
|
directory := @use("file.hb")
|
||||||
bios_parameter_block := @use("rel:bios_parameter_block.hb");
|
bios_parameter_block := @use("bios_parameter_block.hb");
|
||||||
.{bpb_sanity_check, ebr_sanity_check, fs_info_sanity_check} := bios_parameter_block;
|
.{bpb_sanity_check, ebr_sanity_check, fs_info_sanity_check} := bios_parameter_block;
|
||||||
.{new_bpb, new_ebr, new_fs_info} := bios_parameter_block
|
.{new_bpb, new_ebr, new_fs_info} := bios_parameter_block
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
device := @use("rel:device.hb")
|
device := @use("device.hb")
|
||||||
pci := @use("../../../libraries/pci/src/lib.hb")
|
pci := @use("../../../libraries/pci/src/lib.hb")
|
||||||
|
|
||||||
stn := @use("../../../libraries/stn/src/lib.hb");
|
stn := @use("../../../libraries/stn/src/lib.hb");
|
||||||
.{string, memory, buffer, log} := stn
|
.{string, memory, buffer, log} := stn
|
||||||
|
|
||||||
reg := @use("rel:reg.hb")
|
reg := @use("reg.hb")
|
||||||
|
|
||||||
PCI_VENDOR_ID_VMWARE := 0x15AD
|
PCI_VENDOR_ID_VMWARE := 0x15AD
|
||||||
PCI_DEVICE_ID_VMWARE_SVGA2 := 0x405
|
PCI_DEVICE_ID_VMWARE_SVGA2 := 0x405
|
||||||
|
|
Loading…
Reference in a new issue