| Authors | Patrick Lehmann |
|---|---|
| Date Proposed | 2017-04-03 |
| Last Updated | 2017-04-03 |
| Focus | simulation and synthesis |
| LCS | TBD |
type BaseEnum is ( STATUS_IDLE, STATUS_RESETING, STATUS_ERROR ); type myStatus is new BaseEnum ( STATUS_READING, STATUS_READING_COMPLETE, STATUS_WRITING, STATUS_WRITING_COMPLETE ); --type myStatus is new BaseEnum ( -- STATUS_IDLE, -- STATUS_RESETING, -- STATUS_ERROR -- append new literals -- STATUS_READING, -- STATUS_READING_COMPLETE, -- STATUS_WRITING, -- STATUS_WRITING_COMPLETE --);