This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
CAHomework/Homework 9/ex2.jas
2018-11-29 21:37:25 +01:00

22 lines
233 B
Text

.constant
OBJREF 0x40
.end-constant
.main
LDC_W OBJREF
IN
INVOKEVIRTUAL even
HALT
.end-main
.method even(x)
.var
.end-var
ILOAD x
JIFEVEN even
BIPUSH 0x00
IRETURN // odd
even:
BIPUSH 0x01
IRETURN // even
.end-method