fix randc
This commit is contained in:
parent
a129aa14de
commit
c5beecba95
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue