diff options
author | H. Peter Anvin <hpa@zytor.com> | 2003-09-19 07:34:23 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2003-09-19 07:34:23 +0000 |
commit | 9e37859e83c7ade92023934e56d6d75eabe244b0 (patch) | |
tree | 4118a781bd32f53f6d730b33bcb922eb9770e9b0 /display.v | |
parent | 95f631082e0f96a9d571b1e268f2c7e5862b81cd (diff) | |
download | abc80-9e37859e83c7ade92023934e56d6d75eabe244b0.tar.gz abc80-9e37859e83c7ade92023934e56d6d75eabe244b0.tar.xz abc80-9e37859e83c7ade92023934e56d6d75eabe244b0.zip |
Syntax fixes
Diffstat (limited to 'display.v')
-rw-r--r-- | display.v | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -68,7 +68,6 @@ module display ( reg [8:0] y; // Vertical pixel count wire [10:0] a80; // Character row assuming 80 columns reg [5:0] scan_counter; // Counter of total scans (for flashing et al) - wire flash_blank; // Should we currently blank flashed text? reg [7:0] pixrow; // One character worth of pixels reg [2:0] fg; // Foreground RGB reg [2:0] bg; // Background RGB @@ -104,8 +103,8 @@ module display ( assign yvideo = ( y < y_blank ); // Flashing - assign flash_blank = scan_counter[5]; - assign iflash = inverse ^ flash_blank; + wire flash_blank = scan_counter[5]; + wire iflash = inverse ^ flash_blank; // Synchronous logic |