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.

EPE Mag 8 channel Data logger

Status
Not open for further replies.

bbarney

Full Member level 4
Joined
Jan 31, 2004
Messages
208
Helped
19
Reputation
38
Reaction score
5
Trophy points
1,298
Location
canada
Activity points
1,525
I built this datalogger from Aug. & Sept of 1999 from EPE MAG and i can't get it to compile without errors

ERRORS LIST C:\DATALOGGER\DATLOG\DATLOG02.ASM 08-14-2005 17:39:03
Unless marked, any errors have occurred in the main file

File created during assembly to HEX

401 CLRF unexpected C suffix used CLRF STATUS,C
588 CLRF unexpected F suffix used ADCSET: CLRF CHAN,F
665 MOVWF unexpected F suffix used MOVWF RADDRH,F
667 MOVWF unexpected F suffix used MOVWF RADDRL,F

i was wondering if somebody could try to compile it for
 

I don't know what compiler you're using, but CLRF only has one argument (the register to clear) and MOVWF only has one argument (the register to move WREG to). I suggest you erase the ,C and the ,F from these arguments.

If CLRF STATUS, C is supposed to clear the STATUS register, you should use CLRF STATUS, if it is supposed to clear the carry bit in the status register, you should use BCF STATUS, C.
 

it was originally written with TASM and i was trying to use TK3 Toolkit and MPASM but i was getting differant errors with both of them.i don't know what the problem ,as i have compiled other files from epe with no trouble
 

There is a text file you should read on the magazines web site. The file explains few things about the compilation of the asm file.
Go to **broken link removed**
where you can find all related files.

Regards
Platonas
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top