diff options
author | litghost <537074+litghost@users.noreply.github.com> | 2021-03-30 09:56:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 09:56:17 -0700 |
commit | 4b3269148653b4e73c1c18c86d3c31d6d29e8453 (patch) | |
tree | 1b3eadcbda73125cccdaaf574ca16558122956e9 | |
parent | e86e6766fd8f35282765bce7fca0446132e1d99f (diff) | |
parent | 2eb3c836130ff40cd653de34bdae6c5367c8cccc (diff) | |
download | fpga-interchange-schema-4b3269148653b4e73c1c18c86d3c31d6d29e8453.tar.gz fpga-interchange-schema-4b3269148653b4e73c1c18c86d3c31d6d29e8453.tar.bz2 fpga-interchange-schema-4b3269148653b4e73c1c18c86d3c31d6d29e8453.zip |
Merge pull request #22 from litghost/small_fix
Fix examples for format definitions, and add tombstone.
-rw-r--r-- | interchange/DeviceResources.capnp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/interchange/DeviceResources.capnp b/interchange/DeviceResources.capnp index 8074681..0b22a41 100644 --- a/interchange/DeviceResources.capnp +++ b/interchange/DeviceResources.capnp @@ -170,6 +170,9 @@ struct Device { sites @2 : List(Site); row @3 : UInt16; col @4 : UInt16; + + # Field ordinal 5 was deleted. + deleted @5 : UInt32; } ###################################### @@ -606,9 +609,9 @@ struct Device { verilogBinary @4; # 8'hF verilogHex @5; - # 0xF + # 0b10 cBinary @6; - # 0.0 + # 0xF cHex @7; } |