comparison src/rx_firmware.asm @ 623:c40025d8e750

3.03 beta released
author heinrichsweikamp
date Mon, 03 Jun 2019 14:01:48 +0200
parents
children cd58f7fc86db
comparison
equal deleted inserted replaced
622:02d1386429a6 623:c40025d8e750
1 ;=============================================================================
2 ;
3 ; File rx_firmware.asm combined next generation V3.03.4
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
18 IFDEF _rx_functions
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"
25 #include "rx_firmware-1-38.inc"
26
27
28 global rx_firmware_new_major
29 global rx_firmware_new_minor
30 rx_firmware_new_major:
31 retlw rx_firmware_major ; defined in firmware include file
32 rx_firmware_new_minor:
33 retlw rx_firmware_minor ; defined in firmware include file
34
35
36 ENDIF ; _rx_functions
37
38 END