upgrade to latest iverilog

This commit is contained in:
Zachary Snow 2022-02-15 18:02:41 +01:00
parent ccc6f174af
commit 53fa152fc4
2 changed files with 2 additions and 4 deletions

View File

@ -41,7 +41,7 @@ jobs:
- macOS-10.15
needs: build
env:
IVERILOG_REF: 066eb0aca76f5bde06c63d67e605c07ef9f8be23
IVERILOG_REF: 96a1cbf7b2866c41ba8fcdcc0f76f22590d08030
steps:
- uses: actions/checkout@v1
- name: Install Dependencies (macOS)

View File

@ -43,12 +43,10 @@ module top;
`TEST(4'b1011 + 5'b01110)
`TEST(4'b1011 - 5'b01110)
`TEST(4'b1011 ** 5'b01110)
`TEST(4'b1011 -> 5'b01110)
`TEST(4'b1011 <-> 5'b01110)
`TEST(4'b1011 ==? 5'b01110)
`TEST(4'b1011 !=? 5'b01110)
// TODO: not yet supported by iverilog
// `TEST(4'b1011 -> 5'b01110)
end
endmodule