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