Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Problem with lcd code in CodeVision

Status
Not open for further replies.

Navid T

Full Member level 3
Joined
Jan 21, 2005
Messages
186
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,296
Location
Iran
Activity points
1,385
error occurred during assembly codevision

Hi friends
I wrote this simple code. the CodeVision compiles it without error but it can't make it:
Code:
#include <mega8.h>

#asm
       .equ __lcd_port=0x18
#endasm
#include <lcd.h>

void main (void)
{
        lcd_init(16);
        lcd_clear();
        lcd_gotoxy(0,0);
        lcd_putsf("Test");
        while(1);
}
when i want to make it it shows me this: " Error(s) occured during assembly.
please help me
regards
 

error(s) occured during assembly in code vision

I changed setup path to its default with default folder name, it solved !
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top