Class: Origen::Value::X
Overview
Represents a single bit value of 'X'
Instance Method Summary collapse
- #x? ⇒ Boolean (also: #undefined?)
- #x_or_z? ⇒ Boolean (also: #z_or_x?)
- #z? ⇒ Boolean (also: #hi_z?)
Instance Method Details
#x? ⇒ Boolean Also known as: undefined?
19 20 21 |
# File 'lib/origen/value.rb', line 19 def x? true end |
#x_or_z? ⇒ Boolean Also known as: z_or_x?
24 25 26 |
# File 'lib/origen/value.rb', line 24 def x_or_z? true end |
#z? ⇒ Boolean Also known as: hi_z?
14 15 16 |
# File 'lib/origen/value.rb', line 14 def z? false end |