Mercurial > public > hwos_code
comparison src/rx_firmware.asm @ 628:cd58f7fc86db
3.05 stable work
author | heinrichsweikamp |
---|---|
date | Thu, 19 Sep 2019 12:01:29 +0200 |
parents | c40025d8e750 |
children | 4050675965ea |
comparison
equal
deleted
inserted
replaced
627:bf5fee575701 | 628:cd58f7fc86db |
---|---|
1 ;============================================================================= | 1 ;============================================================================= |
2 ; | 2 ; |
3 ; File rx_firmware.asm combined next generation V3.03.4 | 3 ; File rx_firmware.asm combined next generation V3.03.5 |
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 ;============================================================================= |
13 | 13 |
14 rx_firmware_storage code 0x18000 | 14 rx_firmware_storage code 0x18000 |
15 | 15 |
16 ;----------------------------------------------------------------------------- | 16 ;----------------------------------------------------------------------------- |
17 | 17 |
18 IFDEF _rx_functions | 18 IFDEF _rx_update |
19 | 19 |
20 global rx_firmware_storage | 20 global rx_firmware_storage |
21 rx_firmware_storage: | 21 rx_firmware_storage: |
22 | 22 |
23 ;#include "rx_firmware-1-33.inc" | 23 ;#include "rx_firmware-1-33.inc" |
24 ;#include "rx_firmware-1-37.inc" | 24 ;#include "rx_firmware-1-37.inc" |
25 #include "rx_firmware-1-38.inc" | 25 ;#include "rx_firmware-1-38.inc" |
26 #include "rx_firmware-1-39.inc" | |
26 | 27 |
27 | 28 |
28 global rx_firmware_new_major | 29 global rx_firmware_new_major |
29 global rx_firmware_new_minor | 30 global rx_firmware_new_minor |
30 rx_firmware_new_major: | 31 rx_firmware_new_major: |
31 retlw rx_firmware_major ; defined in firmware include file | 32 retlw rx_firmware_major ; defined in firmware include file |
32 rx_firmware_new_minor: | 33 rx_firmware_new_minor: |
33 retlw rx_firmware_minor ; defined in firmware include file | 34 retlw rx_firmware_minor ; defined in firmware include file |
34 | 35 |
35 | 36 |
36 ENDIF ; _rx_functions | 37 ENDIF ; _rx_update |
37 | 38 |
38 END | 39 END |