From e601b9315384792b82517ba3ab30cee316295558 Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sun, 8 Jan 2017 19:33:35 -0600 Subject: add ALU test for shift operations --- alu_tb.v | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'alu_tb.v') diff --git a/alu_tb.v b/alu_tb.v index 7418ea3..31141ce 100644 --- a/alu_tb.v +++ b/alu_tb.v @@ -32,6 +32,14 @@ module alu_tb (); "&" : op = 4; "|" : op = 5; "^" : op = 6; + "<<" : op = 8; + "<<1" : op = 9; + "<<-" : op = 10; + "<<<" : op = 11; + ">>" : op = 12; + "1>>" : op = 13; + "->>" : op = 14; + ">>>" : op = 15; default : op = 0; endcase -- cgit v1.2.3