-- FILE: nor.ads -- DATE : 7/98 -- AUTHOR : Sy Wong -- AIM: Specification for a device for a NOR function with HDL; package NOR is type device is record input1, input2: HDL.input:= FALSE; data_out: HDL.output; end record; procedure update (d: in out device); end NOR;