When compiling r1076 with avra:

[exec] /usr/home/saper/sw/amforth/trunk/core/words/usart-rx-isr.asm(12) : Error 
  : Found no label/variable/constant named XT_RXQ

My duemilanove.asm (pretty much unchanged since 4.0):

.include "macros.asm"
.include "device.asm"
.set WANT_AD_CONVERTER = 1
.set WANT_ANALOG_COMPARATOR = 1
.set WANT_CPU = 1
.set WANT_EEPROM = 1
.set WANT_EXTERNAL_INTERRUPT = 1
.set WANT_PORTB = 1
.set WANT_PORTC = 1
.set WANT_PORTD = 1
.set WANT_SPI = 1
.set WANT_TIMER_COUNTER_0 = 1
.set WANT_TIMER_COUNTER_1 = 1
.set WANT_TIMER_COUNTER_2 = 1
.set WANT_TWI = 1
.set WANT_USART0 = 1
.set WANT_WATCHDOG = 1

.equ TIBSIZE  = $64   ; 80 characters is one line...
.equ APPUSERSIZE = 10 ; size of application user area

; cpu clock in hertz
.equ F_CPU = 16000000
; baud rate of terminal
.include "drivers/usart_0.asm"
.equ BAUD = 19200
.equ USART_B_VALUE = (1<<TXEN0) | (1<<RXEN0) | (1<<RXCIE0)
.equ USART_C_VALUE = (1<<UCSZ01) | ( 1<<UCSZ00)

.set here = ramstart           ; start address of HERE, grows upward
.set rstackstart = RAMEND
.set stackstart  = RAMEND - 80
.set amforth_interpreter = max_dict_addr

.set NUMWORDLISTS = 8
.include "amforth.asm"

Didn't have time to look deeper into this, but maybe some include order
is a problem.

//Marcin


------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
Amforth-devel mailing list
Amforth-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amforth-devel

Reply via email to