Subversion Repositories programming

Rev

Rev 197 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 197 Rev 207
Line -... Line 1...
-
 
1
/**
-
 
2
 * Copyright 2006, Ira W. Snyder (devel@irasnyder.com)
-
 
3
 * License: GNU General Public License v2 (or, at your option, any later
-
 
4
 * version)
-
 
5
 */
-
 
6
 
-
 
7
/**
-
 
8
 * Name: Ira Snyder
-
 
9
 * Class: CS365 - Computer Architecture
-
 
10
 * Project #1 - Part 1 (support)
-
 
11
 * Due: 2006-02-06
-
 
12
 */
-
 
13
 
-
 
14
/**
-
 
15
 * File: ALU1_test.v
1
/* Test module for ALU1.v */
16
 * Purpose: Test module for the ALU1 module.
-
 
17
 */
-
 
18
 
2
module test_alu1;
19
module ALU1_test;
3
 
20
 
4
    reg a, b, cin;
21
    reg a, b, cin;
5
    reg[0:1] op;
22
    reg[0:1] op;
6
    wire cout, result;
23
    wire cout, result;
7
 
24