make a c compiler with opengl :PPP
WAT? LBPHacker, what is this 'C Compiler' thing I hear going around???
@Aavak, as was already discussed, the keyboard is not used for the demo. You need to write a program to be able to use it.
the keyborad dose not work
Oh, I didn't notice that was there, but even if I did I don't think I would have known how to use it. Thanks.
You *can* do that with rasm. Is it not in the manual? @org 0x20 // db 120 (where // is a newline)
That comment shifted a bit :c
Neither, I suppose more of a memory editor added to the compiler. Currently when you use the compiler it clears all the memory except for the code.. I was hoping you could directly store data. So instead of something like mov ax, 120 mov [0x20], ax you could instead tell the compiler to directly insert 120 to 0x20, not including it in your code. But prehaps the C assembler will already cover that with variables.
I know a bit about math and programming and I am kinda clueless as to what's being talked about here.
That depends on what you mean by storing values at addresses. If you mean storing immediate x at address immediate y (mov [imm], imm), well, that's something even i7 processors can't do. If you mean storing immediate x at address indirect y (mov [reg], imm), sure, that's gonna work! Although it's a feature of the architecture, not of the compiler/assembler.