Kroha icon indicating copy to clipboard operation
Kroha copied to clipboard

A small language makes assembly less painful.

Results 5 Kroha issues
Sort by recently updated
recently updated
newest added

Compilation errors should be written to stderr

bug

A new version of Kroha with a new CLI and new backends for nasm32 and nasm64.

release

Add a `continue` statement that allows jumping to the beginning of the loop. It's the opposite of the `break` operator. ## Examples ```asm loop L { !inc cx continue (L)...

good first issue

Statements with block body, such as `if` or `loop`, compiles with redundant intent. For example ```asm loop WithBlock { !; 2 indents } loop WithoutBlock !; 1 indent ``` compiles...

good first issue

Fix if-branches ordering for compiled code. ```asm if (x == 0, XEZ) !; if body else !; else body ``` Actual: ```asm cmp ax, 0 je XEZ_begin ; else body...

good first issue