[decomp] ramdisk, load-dgo and rpc-h (#496)

* decompile ramdisk load-dgo and rpc-h

* add a bunch of offline tests

* clang-format
This commit is contained in:
water111
2021-05-16 21:07:22 -04:00
committed by GitHub
parent b75a64fc29
commit ec412c7777
31 changed files with 5351 additions and 177 deletions
+2 -2
View File
@@ -222,8 +222,8 @@ u64 new_structure(u32 heap, u32 type) {
/*!
* Allocate a structure with a dynamic size
*/
u64 new_dynamic_structure(u32 heap, u32 type, u32 size) {
return alloc_from_heap(heap, type, size);
u64 new_dynamic_structure(u32 heap_symbol, u32 type, u32 size) {
return alloc_from_heap(heap_symbol, type, size);
}
/*!