623
|
1 ;=============================================================================
|
|
2 ;
|
634
|
3 ; File rx_firmware.asm combined next generation V3.09.4f
|
623
|
4 ;
|
|
5 ; Firmware for the RX Co-Processor
|
|
6 ;
|
654
|
7 ; Copyright (c) 2019, heinrichs weikamp gmbh, all rights reserved.
|
623
|
8 ;=============================================================================
|
|
9
|
|
10
|
|
11 #include "hwos.inc" ; mandatory header
|
|
12
|
|
13
|
634
|
14 ;=============================================================================
|
|
15 rx_firmware_storage code 0x18000
|
|
16 ;=============================================================================
|
623
|
17
|
|
18
|
628
|
19 IFDEF _rx_update
|
623
|
20
|
|
21 global rx_firmware_storage
|
|
22 rx_firmware_storage:
|
|
23
|
643
|
24 #include "rx_firmware-1-41.inc"
|
623
|
25
|
|
26 global rx_firmware_new_major
|
|
27 rx_firmware_new_major:
|
|
28 retlw rx_firmware_major ; defined in firmware include file
|
634
|
29
|
|
30 global rx_firmware_new_minor
|
623
|
31 rx_firmware_new_minor:
|
|
32 retlw rx_firmware_minor ; defined in firmware include file
|
|
33
|
|
34
|
628
|
35 ENDIF ; _rx_update
|
623
|
36
|
634
|
37 ;-----------------------------------------------------------------------------
|
|
38
|
623
|
39 END
|