Sha256: 54d9f3d5328ea611cf3b2927d9eef24af16ff618b1984038b02557b5e048b485
Contents?: true
Size: 384 Bytes
Versions: 100
Compression:
Stored size: 384 Bytes
Contents
require 'HDLRuby' configure_high # Describes an 8-bit data 8-bit address ROM. system :rom8_8 do [7..0].input :addr [7..0].inout :data bit[7..0][2**8].constant content: (2**8).times.to_a data <= content[addr] end # Instantiate it for checking. rom8_8 :rom8_8I # Generate the low level representation. low = rom8_8I.systemT.to_low # Displays it puts low.to_yaml
Version data entries
100 entries across 100 versions & 1 rubygems