[vsim] Bugfix: convert top level to lower case

This commit is contained in:
Markus Koch 2015-04-10 22:42:18 +02:00
parent c242857c62
commit 968296dae0
1 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#include <fstream>
#include <string.h>
// #define DEBUG_EN DEBUG_EN
#define DEBUG_EN DEBUG_EN
using namespace std;
@ -139,6 +139,9 @@ int main(int argc, char **argv) {
// -gui work.toplevel(RTL)
string temp = "";
for (unsigned int i=0; i < top.length(); ++i) {
if (top.at(i) >= 'A' && top.at(i) <= 'Z')
top.at(i) = top.at(i) - ('A'-'a'); // convert to lower case
if (top.at(i) == '.') {
work = temp;
temp = "";