From f6fc7f9216182bb6db27be16cdc9d1f006649a23 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Tue, 29 Nov 2016 17:22:55 +0100 Subject: [PATCH] rtio: rtio_output_{list->wide} --- artiq/coredevice/rtio.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/artiq/coredevice/rtio.py b/artiq/coredevice/rtio.py index 3dec674df..471a48c31 100644 --- a/artiq/coredevice/rtio.py +++ b/artiq/coredevice/rtio.py @@ -3,12 +3,13 @@ from artiq.language.types import TInt64, TInt32, TNone, TList @syscall(flags={"nowrite"}) -def rtio_output(time_mu: TInt64, channel: TInt32, addr: TInt32, data: TInt32) -> TNone: +def rtio_output(time_mu: TInt64, channel: TInt32, addr: TInt32, data: TInt32 + ) -> TNone: raise NotImplementedError("syscall not simulated") @syscall(flags={"nowrite"}) -def rtio_output_list(time_mu: TInt64, channel: TInt32, addr: TInt32, +def rtio_output_wide(time_mu: TInt64, channel: TInt32, addr: TInt32, data: TList(TInt32)) -> TNone: raise NotImplementedError("syscall not simulated")