Age | Commit message (Expand) | Author |
2022-02-14 | snprintf now working! (fixed problem will calls inside calls) | pommicket |
2022-02-13 | cleanup notes | pommicket |
2022-02-13 | sprintf working! (but not snprintf ...) | pommicket |
2022-02-13 | first C hello world! | pommicket |
2022-02-13 | C compiler done ? va_list/arg program working :) | pommicket |
2022-02-13 | fixed local variables and also structs containing arrays | pommicket |
2022-02-13 | switch / case / default | pommicket |
2022-02-13 | labels, goto | pommicket |
2022-02-13 | break, continue | pommicket |
2022-02-13 | if, while, do | pommicket |
2022-02-13 | pre/post increment/decrement | pommicket |
2022-02-13 | comparison operators | pommicket |
2022-02-13 | compound assignment operators | pommicket |
2022-02-13 | fix dereferencing function pointer codegen | pommicket |
2022-02-12 | fix casting arguments to parameter type | pommicket |
2022-02-12 | logical and,or | pommicket |
2022-02-12 | fix generate_function_addr; conditional expressions | pommicket |
2022-02-12 | function calls mostly working | pommicket |
2022-02-12 | bitwise and,or,xor, shifts | pommicket |
2022-02-12 | codegen remainder, fix addition | pommicket |
2022-02-12 | multiplication and division | pommicket |
2022-02-12 | assignments, STATEMENT_EXPRESSIONs | pommicket |
2022-02-12 | codegen for . -> , | pommicket |
2022-02-12 | codegen for address of | pommicket |
2022-02-12 | codegen for dereference, subscript | pommicket |
2022-02-12 | local variables | pommicket |
2022-02-12 | codegen for global variables | pommicket |
2022-02-11 | subtraction codegen | pommicket |
2022-02-11 | addition | pommicket |
2022-02-11 | fixed prefix -- parsing; codegen for unary + - ~ ! | pommicket |
2022-02-10 | generating code for casts! | pommicket |
2022-02-10 | return, integer literals | pommicket |
2022-02-10 | first working executable! | pommicket |
2022-02-10 | fix some calling convention stuff | pommicket |
2022-02-09 | start codegen | pommicket |
2022-02-09 | more parsing tests, fixed more bugs | pommicket |
2022-02-08 | fixed #include -> #include in certain cases, found a new bug | pommicket |
2022-02-08 | fix declaring multiple variables after struct definition | pommicket |
2022-02-08 | more parsing tests, more fixes | pommicket |
2022-02-07 | fix #elif line number problem with parse test | pommicket |
2022-02-07 | fix a bunch of problems from parsing test | pommicket |
2022-02-07 | fix multi-line fmacro invocations | pommicket |
2022-02-07 | capital number suffixes (oops) | pommicket |
2022-02-07 | handle object macro definitions beginning with ( oops | pommicket |
2022-02-07 | handle fmacros with no parameters | pommicket |
2022-02-07 | defined in #if (forgot about that earlier) | pommicket |
2022-02-07 | cleanup - declaring functions without defining them, etc. | pommicket |
2022-02-07 | proper call typing? | pommicket |
2022-02-07 | parsing calls, mostly | pommicket |
2022-02-06 | using function names | pommicket |