Closed mlouielu closed 7 years ago
@mlouielu, Since call
and ret
instructions are implemented by @pakls, the label support is getting important for us to write more non-trivial applications. Would you like to revise these above changes?
@jserv Sure, I will get another round to revising this. (I'm on the vacation these days.)
@mlouielu, would you like to continue this work recently? If so, I expect to implement function call support.
@jserv I think this should propose by a new round of PR. This PR has too much conflict to current code.
Close per the suggestion from @mlouielu
Label syntax as
<LABEL>:
in one separate line, it can not do as<LABEL>: add $0 $0 #1
, jump instructions can jump to label with:<LABEL>
syntax (e.g.jmp :label
,jnz #1 :label
).<LABEL>
is valid in any alphabet and digit, it should be fixed.