Low level code execution?

is it possible to accessing memory or run assembly, machine code or bytecode???

2 Likes

While I don’t know if memory access is possible, I know from this thread that assembly code can be included in makecode projects / extensions.

1 Like

also, should mention that assembly and C++ code only run on hardware, not the browser! they should only be used for projects that require APIs that aren’t exposed in the TypeScript

3 Likes

i started working on writing some asm for the adafruit pygamer, as with asm you need to be hardware specific.

i used the gnu arm toolchain, i coverted the elf → bin → uf2, but the way that the programs are made, i have not been able to get it working.

ill open a github repo for this w/ ideas to get working

1 Like