From 4b4090518b3975f6c52300a0b57167479287eb60 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 19 Feb 2018 15:14:06 +0800 Subject: [PATCH] drtio: clean up remnants of removed debug functions --- artiq/coredevice/drtio_dbg.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/artiq/coredevice/drtio_dbg.py b/artiq/coredevice/drtio_dbg.py index 4c92f0926..56482c6dc 100644 --- a/artiq/coredevice/drtio_dbg.py +++ b/artiq/coredevice/drtio_dbg.py @@ -8,21 +8,6 @@ from artiq.language.core import syscall from artiq.language.types import TTuple, TInt32, TInt64, TNone -@syscall(flags={"nounwind", "nowrite"}) -def drtio_get_channel_state(channel: TInt32) -> TTuple([TInt32, TInt64]): - raise NotImplementedError("syscall not simulated") - - -@syscall(flags={"nounwind", "nowrite"}) -def drtio_reset_channel_state(channel: TInt32) -> TNone: - raise NotImplementedError("syscall not simulated") - - -@syscall(flags={"nounwind", "nowrite"}) -def drtio_get_fifo_space(channel: TInt32) -> TNone: - raise NotImplementedError("syscall not simulated") - - @syscall(flags={"nounwind", "nowrite"}) def drtio_get_packet_counts(linkno: TInt32) -> TTuple([TInt32, TInt32]): raise NotImplementedError("syscall not simulated")