mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-05 09:46:36 +08:00
19 lines
519 B
Python
19 lines
519 B
Python
from artiq.language.core import syscall
|
|
from artiq.language.types import TInt64, TInt32, TNone
|
|
|
|
|
|
@syscall
|
|
def rtio_output(time_mu: TInt64, channel: TInt32, addr: TInt32, data: TInt32
|
|
) -> TNone:
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
@syscall
|
|
def rtio_input_timestamp(timeout_mu: TInt64, channel: TInt32) -> TInt64:
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
@syscall
|
|
def rtio_input_data(channel: TInt32) -> TInt32:
|
|
raise NotImplementedError("syscall not simulated")
|