Mercurial > public > mk2
view code_part1/OSTC_code_asm_part1/MAIN.ASM @ 92:82de387d6e7c
Interrupt trashes the PRODH:L registers.
author | JeanDo |
---|---|
date | Sat, 11 Dec 2010 09:57:42 +0100 |
parents | 3e351e25f5d1 |
children | dc349e4264bb |
line wrap: on
line source
; OSTC - diving computer code ; Copyright (C) 2008 HeinrichsWeikamp GbR ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; You should have received a copy of the GNU General Public License ; along with this program. If not, see <http://www.gnu.org/licenses/>. ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either versio ; includes and isr ; written by: Matthias Heinrichs, info@heinrichsweikamp.com ; written: 041013 ; last updated: 081219 ; known bugs: ; ToDo: LIST P=18F4685 ;directive to define processor #include <P18F4685.INC> ;processor specific variable definitions #include definitions.asm ; Defines, I/O Ports and variables reset_v code 0x0000 goto start ; Start! inter_v code 0x0008 bra HighInt ;High Priority Interrups inter_asm code 0x0018 ;Low Priority Interrups ; *** low priority interrupts not used bra HighInt ;High Priority Interrups HighInt: movff BSR,0x102 ;save BSR register movlb b'00000001' ;select Bank1 movff STATUS,status_temp ;save STATUS register movff WREG,wreg_temp ;save working register movff PRODL,prod_temp+0 movff PRODH,prod_temp+1 movf PORTB,W ;move portb into latch register btfsc PIR1,TMR1IF ;Timer1 INT (external 32.768kHz Clock) call timer1int btfsc INTCON,TMR0IF ;Timer0 INT (Debounce Timer) call timer0int btfsc PIR2,TMR3IF ;Timer3 INT (Delay for PWM Buzzer) call timer3int btfsc PIR1,RCIF ; UART call uartint btfsc INTCON,INT0IF ; Switch left call schalter_links btfsc INTCON3,INT1IF ; switch right call schalter_rechts movff prod_temp+1,PRODH movff prod_temp+0,PRODL movff wreg_temp,WREG ;restore working register movff status_temp,STATUS ;restore STATUS register movff 0x102,BSR ;restore BSR register retfie ;============================================================================= #include text_table.asm ; includes textmacros ;============================================================================= osct_asm code #include displaytext.asm ; sends texts to wordprocessor #include math.asm ; mathematical functions #include wait.asm ; waitroutines #include valconv.asm ; outputs to POSTINC2 #include eeprom_rs232.asm ; Internal EEPROM and RS232 Interface #include oled_samsung.asm ; Attached in 80-System 8-Bit Mode #include menu_custom.asm ; Menu "Custom FunctionsI" and "Custom FunctionsII" #include menu.asm ; Main Menu and Setup Menu #include menu_reset.asm ; Submenu "Reset" #include menu_settime.asm ; Submenu "Set Time" #include ms5535.asm ; Interface to MS5535A,B or C pressure sensor #include pled_outputs.asm ; div. PLED outputs and background debugger #include i2c_eeprom.asm ; for external I2C EEPROM and general I2C Routines #include menu_logbook.asm ; Submenu "Logbook" #include interface.asm ; Interface routines #include menu_ppO2.asm ; Constant ppO2 setup menu #include menu_battery.asm ; Submenu "Battery Info" #include menu_gassetup.asm ; Menu "Gas Setup" #include isr.asm ; Interrupt service routine (RTC&Sensor) #include surfmode.asm ; Mainroutines for Surfacemode #include divemode.asm ; Mainroutines for Divemode #include divemode_menu.asm ; Underwater menu #include sleepmode.asm ; Mainroutines for Sleepmode #include adc_rtc.asm ; A/D converter (battery control) and RTC init #include temp_extrema.asm ; Takes care of the temperature extrema logger #include sync_clock.asm ; syncs RTC with PC #include start.asm ; Startup and init, checks background debugger #include simulator.asm ; Stand-alone simulator routines #include io.asm ; Low-Level I/O access ;============================================================================= #include printf.asm ; jDG's compact printf test implementation. #ifdef TESTING #include aa_tests.asm ; And testing code. #include test_printf.asm ; Special font/colors page #endif ;============================================================================= #ifdef AAFONTS ; New antialiased word processor and fonts #include aa_wordprocessor.asm ; ASM wordprocessor under tests. #else ; Include C sub-routines automatically p3_wp code 0x09A00 ; Mark segment name into the .map file ; #include p3_wordprocessor_9A00_BAFF_0B468.txt ; jDG's C-Code #include ostc_part3_wordprocessor_NEW_CURSOR_9A00_to_B960_jump_in_B410.txt ; Christians fonts... #endif ;============================================================================= p2_deco code 0x0C000 ; Mark segment name into the .map file #include p2_deco_main_v110d.txt ;============================================================================= MESSG "OSTC - diving computer code, Copyright (C) 2010 HeinrichsWeikamp GbR" MESSG "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the" MESSG "Free Software Foundation, either version 3 of the License, or (at your option) any later version." MESSG "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY" MESSG "or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details." MESSG "You should have received a copy of the GNU General Public License along with this program.If not, see http://www.gnu.org/licenses/." END ; end of program