From f08f8dbb3c480220f92923a7f3242fcbb644b65e Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Tue, 13 Aug 2019 12:09:27 +0530 Subject: Infer reset (#1068) * Add abstract "Reset" which can be inferred to AsyncReset or UInt<1> * Enhance async reset initial value literal check to support aggregates--- src/main/proto/firrtl.proto | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/proto') diff --git a/src/main/proto/firrtl.proto b/src/main/proto/firrtl.proto index 2552b989..b8f6db98 100644 --- a/src/main/proto/firrtl.proto +++ b/src/main/proto/firrtl.proto @@ -277,6 +277,10 @@ message Firrtl { // Empty. } + message ResetType { + // Empty. + } + message BundleType { message Field { // Required. @@ -315,6 +319,7 @@ message Firrtl { FixedType fixed_type = 7; AnalogType analog_type = 8; AsyncResetType async_reset_type = 9; + ResetType reset_type = 10; } } -- cgit v1.2.3