Sha256: e0f6f78f2c49df9651c5430a067736238ff5ab623a8f048017a60eb794d8ebc1
Contents?: true
Size: 780 Bytes
Versions: 13
Compression:
Stored size: 780 Bytes
Contents
require "HDLRuby/hruby_rsim" ## # Library for enhancing the Ruby simulator with muted output support # ######################################################################## module HDLRuby::High class SystemT # Enhance the system type class with mute support. ## Initializes the displayer for generating a vcd on +vcdout+ def show_init(vcdout) end ## Displays the time. def show_time end ## Displays the value of signal +sig+. def show_signal(sig) end ## Displays value +val+. # NOTE: for now displays on the standard output and NOT the vcd. def show_value(val) end ## Displays string +str+. def show_string(str) end end end
Version data entries
13 entries across 13 versions & 1 rubygems