fix randc

This commit is contained in:
jane 2020-11-11 13:44:52 -05:00
parent a129aa14de
commit c5beecba95
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ def mod(target, arg, index):
return (target % arg, index)
def rand(target, arg):
return random.randrange(0, 255)
def rand(target, arg, index):
return (random.randrange(0, 255), index)
def jnz(target, arg, index):