Communication between methods and rules occur through module level constructs such as registers, FIFOs, or other modules. When a rule needs to access data from an interface, the input (action) method can write the data to a register, and the rule can read the value in the next clock cycle. (Note: A configuration register can be used to avoid schedule blocking when writing registers in methods and reading them in rules) To avoid this extra register and the associated cycle latency, Bluespec provides the RWire package. Conceptually, RWire is a 0-delay wire with an appropriate interface. The interface allows one write per cycle, and the write must occur before the read. Shared Address BusThis example shows the use of an RWire, via the mkWire module to share information between separate interface methods. This example uses a shared address bus example.
interface Memory_ifc ; |
Learning BSV > Advanced Bluespec >