Assignment I (Verilog)


Due Oct 10, 1997

Write Verilog programs to implement the following circuits. Simulate each circuit independently. Based on your experience, write a one paragraph analysis of the suitability of simulation as a verification method.

You will need the Veriwell simulator:

If you use emacs, copy this file somewhere in your load path: verilog-mode.el, and then add this somewhere where it can be loaded:

(autoload 'verilog-mode "verilog-mode" nil t)

(setq auto-mode-alist (append (list (cons "\\.v$" 'verilog-mode)
				    (cons "\\.f$" 'verilog-mode))
			      auto-mode-alist))

(setq verilog-mode-hook '(lambda ()
			   ;; User specifications
			   (setq verilog-tab-always-indent t
				 verilog-auto-newline nil
				 verilog-auto-endcomments t
				 verilog-indent-level 3
				 verilog-continued-expr 1
				 verilog-label-offset -2
				 verilog-case-offset 2
				 )))

Page visited times since November 18, 1996.

sabry@cs.uoregon.edu