diff -ur lcd-0.1.1.old/lcd.cc lcd-0.1.1/lcd.cc --- lcd-0.1.1.old/lcd.cc 2000-08-27 14:19:12.000000000 -0700 +++ lcd-0.1.1/lcd.cc 2003-10-20 22:18:24.000000000 -0700 @@ -86,7 +86,7 @@ // tracing, stimulus interface, etc.). The LcdPort class extends // IOPORT by redirecting changes to the LCD state machine. -Lcd_Port::Lcd_Port (unsigned int _num_iopins=8) : IOPORT(_num_iopins) +Lcd_Port::Lcd_Port (unsigned int _num_iopins) : IOPORT(_num_iopins) { } @@ -114,7 +114,7 @@ } -DataPort::DataPort (unsigned int _num_iopins=8) : Lcd_Port(_num_iopins) +DataPort::DataPort (unsigned int _num_iopins) : Lcd_Port(_num_iopins) { } @@ -146,7 +146,7 @@ //----------------------------------------------------- -ControlPort::ControlPort (unsigned int _num_iopins=8) : Lcd_Port(_num_iopins) +ControlPort::ControlPort (unsigned int _num_iopins) : Lcd_Port(_num_iopins) { break_delta = 100000; }