Mercurial > public > hwos_code
comparison src/rx_firmware.asm @ 634:4050675965ea
3.10 stable release
author | heinrichsweikamp |
---|---|
date | Tue, 28 Apr 2020 17:34:31 +0200 |
parents | cd58f7fc86db |
children | 7d8a4c60ec1a |
comparison
equal
deleted
inserted
replaced
633:690c48db7b5b | 634:4050675965ea |
---|---|
1 ;============================================================================= | 1 ;============================================================================= |
2 ; | 2 ; |
3 ; File rx_firmware.asm combined next generation V3.03.5 | 3 ; File rx_firmware.asm combined next generation V3.09.4f |
4 ; | 4 ; |
5 ; Firmware for the RX Co-Processor | 5 ; Firmware for the RX Co-Processor |
6 ; | 6 ; |
7 ; Copyright (c) 2019, HeinrichsWeikamp, all rights reserved. | 7 ; Copyright (c) 2019, HeinrichsWeikamp, all rights reserved. |
8 ;============================================================================= | 8 ;============================================================================= |
9 | 9 |
10 | 10 |
11 #include "hwos.inc" ; mandatory header | 11 #include "hwos.inc" ; mandatory header |
12 | 12 |
13 | 13 |
14 rx_firmware_storage code 0x18000 | 14 ;============================================================================= |
15 rx_firmware_storage code 0x18000 | |
16 ;============================================================================= | |
15 | 17 |
16 ;----------------------------------------------------------------------------- | |
17 | 18 |
18 IFDEF _rx_update | 19 IFDEF _rx_update |
19 | 20 |
20 global rx_firmware_storage | 21 global rx_firmware_storage |
21 rx_firmware_storage: | 22 rx_firmware_storage: |
22 | 23 |
23 ;#include "rx_firmware-1-33.inc" | 24 #include "rx_firmware-1-40.inc" |
24 ;#include "rx_firmware-1-37.inc" | |
25 ;#include "rx_firmware-1-38.inc" | |
26 #include "rx_firmware-1-39.inc" | |
27 | |
28 | 25 |
29 global rx_firmware_new_major | 26 global rx_firmware_new_major |
30 global rx_firmware_new_minor | |
31 rx_firmware_new_major: | 27 rx_firmware_new_major: |
32 retlw rx_firmware_major ; defined in firmware include file | 28 retlw rx_firmware_major ; defined in firmware include file |
29 | |
30 global rx_firmware_new_minor | |
33 rx_firmware_new_minor: | 31 rx_firmware_new_minor: |
34 retlw rx_firmware_minor ; defined in firmware include file | 32 retlw rx_firmware_minor ; defined in firmware include file |
35 | 33 |
36 | 34 |
37 ENDIF ; _rx_update | 35 ENDIF ; _rx_update |
38 | 36 |
37 ;----------------------------------------------------------------------------- | |
38 | |
39 END | 39 END |