forked from M-Labs/artiq
1
0
Fork 0

merge fixes

This commit is contained in:
Sébastien Bourdeauducq 2024-08-30 14:42:37 +08:00
parent 52196bb36e
commit e0aa061575
2 changed files with 3 additions and 2 deletions

View File

@ -25,8 +25,8 @@ def rtio_get_destination_status(destination: int32) -> bool:
def rtio_get_counter() -> int64: def rtio_get_counter() -> int64:
raise NotImplementedError("syscall not simulated") raise NotImplementedError("syscall not simulated")
@syscall @extern
def test_exception_id_sync(id: TInt32) -> TNone: def test_exception_id_sync(id: int32):
raise NotImplementedError("syscall not simulated") raise NotImplementedError("syscall not simulated")
artiq_builtins = { artiq_builtins = {

View File

@ -1,3 +1,4 @@
import unittest
from operator import itemgetter from operator import itemgetter
from numpy import int32, int64 from numpy import int32, int64