1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Allow clicking on reg in mem window, other minor fixes

This commit is contained in:
Brian Fiete 2019-12-25 12:43:45 -08:00
parent 4dcd7f9c6a
commit 2618b29daa
13 changed files with 96 additions and 32 deletions

View file

@ -216,36 +216,23 @@ namespace Hey.Dude.Bro
}
}
public static void Florgs()
{
}
public static int Main(String[] args)
{
Int i = (.)123;
i = i + i;
function void() func = => Florgs;
int32 val = (int32)(int)(void*)func;
Zangles zang = scope .();
//void* ptr = "Hey";
//val = (int32)ptr;
Zangles.GetMe(zang, "hey");
TypeCode tc = .Boolean;
PrintF("Hey\n");
//Test2(1, 2, 3, 4);
/*IHashable ih = (int32)TypeCode.Boolean;
let hashCode = ih.GetHashCode();*/
Object obj = new Object();
int* iPtr = scope .();
int hash = GetHash(iPtr);
//Test2(1, 2, 3, 4);
//Test2(1, 2, val, 4);
Blurg.Hey();
return 1;
}
@ -334,3 +321,10 @@ static
static int gApsings = 123;
}
/*namespace zSquarf
{
class Zorf
{
}
}*/

View file

@ -1,3 +1,5 @@
//using Squarf;
//GORB
#pragma warning disable 168
@ -6,10 +8,19 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
enum EnumA
{
Abo = 1,
Boop = _*2,
Croop = _*2,
}
struct Blurg
{
public static int32 Hey()
{
int a = 123;
int* aPtr = &a;
return (int32)123;
}