view 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
line wrap: on
line source

;=============================================================================
;
;   File rx_firmware.asm                      combined next generation V3.09.4f
;
;   Firmware for the RX Co-Processor
;
;   Copyright (c) 2019, HeinrichsWeikamp, all rights reserved.
;=============================================================================


#include "hwos.inc"						; mandatory header


;=============================================================================
rx_firmware_storage		code	0x18000
;=============================================================================


 IFDEF _rx_update

	global	rx_firmware_storage
rx_firmware_storage:

#include	"rx_firmware-1-40.inc"

	global	rx_firmware_new_major
rx_firmware_new_major:
	retlw	rx_firmware_major			; defined in firmware include file

	global	rx_firmware_new_minor
rx_firmware_new_minor:
	retlw	rx_firmware_minor			; defined in firmware include file


 ENDIF	; _rx_update

;-----------------------------------------------------------------------------

	END