aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/avr8/devices/atmega16hva2/device.asm
blob: 7ce94555c56d1e4a98dc69fa72ccec563b23bf1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
; Partname:  ATmega16HVA2
; Built using part description XML file version 1
; generated automatically, do not edit

.nolist
	.include "m16HVA2def.inc"
.list

.equ ramstart =  $100
.equ CELLSIZE = 2
.macro readflashcell
	lsl zl
	rol zh
	lpm @0, Z+
	lpm @1, Z+
.endmacro
.macro writeflashcell
	lsl zl
	rol zh
.endmacro

; the following definitions are shortcuts for the respective forth source segments if set to 1
.set WANT_AD_CONVERTER = 0
.set WANT_BANDGAP = 0
.set WANT_BATTERY_PROTECTION = 0
.set WANT_BOOT_LOAD = 0
.set WANT_COULOMB_COUNTER = 0
.set WANT_CPU = 0
.set WANT_EEPROM = 0
.set WANT_EXTERNAL_INTERRUPT = 0
.set WANT_FET = 0
.set WANT_PORTA = 0
.set WANT_PORTB = 0
.set WANT_PORTC = 0
.set WANT_SPI = 0
.set WANT_TIMER_COUNTER_0 = 0
.set WANT_TIMER_COUNTER_1 = 0
.set WANT_VOLTAGE_REGULATOR = 0
.set WANT_WATCHDOG = 0


.ifndef SPMEN
 .equ SPMEN = SELFPRGEN
.endif

.ifndef SPMCSR
 .equ SPMCSR = SPMCR
.endif

.ifndef EEPE
 .equ EEPE = EEWE
.endif

.ifndef EEMPE
 .equ EEMPE = EEMWE
.endif
.equ intvecsize = 2 ; please verify; flash size: 16384 bytes
.equ pclen = 2 ; please verify
.overlap
.equ INTVECTORS = 22
.org $0002
	 rcall isr ; Battery Protection Interrupt
.org $0004
	 rcall isr ; Voltage regulator monitor interrupt
.org $0006
	 rcall isr ; External Interrupt Request 0
.org $0008
	 rcall isr ; External Interrupt Request 1
.org $000A
	 rcall isr ; External Interrupt Request 2
.org $000C
	 rcall isr ; Pin Change Interrupt Request 0
.org $000E
	 rcall isr ; Watchdog Timeout Interrupt
.org $0010
	 rcall isr ; Timer 1 Input capture
.org $0012
	 rcall isr ; Timer 1 Compare Match A
.org $0014
	 rcall isr ; Timer 1 Compare Match B
.org $0016
	 rcall isr ; Timer 1 overflow
.org $0018
	 rcall isr ; Timer 0 Input Capture
.org $001A
	 rcall isr ; Timer 0 Comapre Match A
.org $001C
	 rcall isr ; Timer 0 Compare Match B
.org $001E
	 rcall isr ; Timer 0 Overflow
.org $0020
	 rcall isr ; SPI Serial transfer complete
.org $0022
	 rcall isr ; Voltage ADC Conversion Complete
.org $0024
	 rcall isr ; Coulomb Counter ADC Conversion Complete
.org $0026
	 rcall isr ; Coloumb Counter ADC Regular Current
.org $0028
	 rcall isr ; Coloumb Counter ADC Accumulator
.org $02A
	 rcall isr ; EEPROM Ready
.nooverlap
mcu_info:
mcu_ramsize:
	.dw 1024
mcu_eepromsize:
	.dw 256
mcu_maxdp:
	.dw 0 ; minimum of 0 (from XML) and 0xffff
mcu_numints:
	.dw 22
mcu_name:
	.dw 12
	.db "ATmega16HVA2"
.set codestart=pc