Async buffer test fully working

This commit is contained in:
2022-02-22 18:04:21 +01:00
parent 7e86815e28
commit 53d11963fb
10 changed files with 1758 additions and 39 deletions

View File

@@ -44,13 +44,13 @@
)
)
(define assert-channel-valid
(define assert-qdi-channel-valid
(lambda (ch width value)
(assert-var-int (string-append ch ".d") width value)
)
)
(define assert-channel-neutral
(define assert-qdi-channel-neutral
(lambda (ch width)
(letrec ((helper
(lambda (i)
@@ -74,7 +74,7 @@
)
(define set-channel-neutral
(define set-qdi-channel-neutral
(lambda (ch width)
(letrec ((ch-name (string-append ch ".d"))
(helper
@@ -97,7 +97,7 @@
)
)
(define set-channel-valid
(define set-qdi-channel-valid
(lambda (ch width val)
(letrec ((ch-name (string-append ch ".d"))
(helper