From 06845b8f9028fc1aab835259223c28a35128da8c Mon Sep 17 00:00:00 2001 From: Patrick Egan Date: Fri, 25 Mar 2016 16:38:56 -0400 Subject: [PATCH] Finished documentation --- myhdl/conversion/_VHDLNameValidation.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/myhdl/conversion/_VHDLNameValidation.py b/myhdl/conversion/_VHDLNameValidation.py index 6f141555..17ab5a71 100644 --- a/myhdl/conversion/_VHDLNameValidation.py +++ b/myhdl/conversion/_VHDLNameValidation.py @@ -1,13 +1,11 @@ import warnings from myhdl import ToVHDLWarning -#Save all words which would generate errors in VHDL here -#TODO: Make appropriate calls to raise warnings in _toVHDL.py - -#A list of all reserved words within VHDL which should not be used for -#anything other than their own specific purpose - class _nameCheck(): + 'Saves all reserved words in VHDL and variable names used in a MyHDL circuit to check for any name collisions' + + #A list of all reserved words within VHDL which should not be used for + #anything other than their own specific purpose _vhdl_keywords = ["abs", "access", "after", "alias", "all", "and", "architecture", "array", "assert", "attribute", "begin", "block", "body", "buffer",