videochargen/main.S

196 lines
3.1 KiB
ArmAsm

; main.S
;
; This file is part of OSDY VideoCharGen
; a do-it-yourself on-screen-display image generator
; for superimposition of analog PAL signals
;
#include <avr/io.h>
#include "macro.h"
#include "const.h"
.data
show_image:
.byte 0x00
button_next_image:
.byte 0x0
current_jump_table:
.word 0x0
.text
.global main_asm
main_asm:
; init variables
ldi r16, 0
sts show_image, r16
; r0 always holds 0
clr r0
; global interrupt enable
sei
; endless loop
1:
rjmp 1b
.global int_horizontal_sync_s
int_horizontal_sync_s:
push r31
push r30
; load timer to trigger isr at the beginning of the visible scanline
; reset counter to 0
ldi r31, 0
sts TCNT1H, r31
sts TCNT1L, r31
; set counter TOP (MSB first!)
lds r31, hpos + 1
lds r30, hpos
sts OCR1AH, r31
sts OCR1AL, r30
; clear any pending interrupt
ldi r31, 0x7
sts TIFR1, r31
; enable interrupt timer A
lds r31, TIMSK1
ori r31, 0x02
sts TIMSK1, r31
pop r30
pop r31
ret
.global int_timer_0
int_timer_0:
; here we are at the beginning of the visible line
push r31
in r31, IO(SREG)
push r31
push r30
push r29
push r25
; turn off interrupt
lds r31, TIMSK1
andi r31, 0xfd ; mask disable interrupt timer A
sts TIMSK1, r31
lds r31, show_image
cpi r31, 0x1
brne jump_table_return_address
lds zl, current_jump_table
lds zh, current_jump_table + 1
clr r0
lds r29, line
lds r25, vpos
sub r29, r25
add zl, r29
adc zh, r0
add zl, r29
adc zh, r0
ijmp
.global jump_table_return_address
jump_table_return_address:
pop r25
pop r29
pop r30
pop r31
out IO(SREG), r31
pop r31
reti
.global int_vertical_sync_s
int_vertical_sync_s:
push r31
in r31, IO(SREG)
push zl
push zh
push yl
push yh
ldi r30, 1
ldi r31, 0
sts line, r30
sts line + 1, r31
; check button
in r31, IO(PINB)
andi r31, 0x08
breq check_if_released
ldi r31, 1
sts button_next_image, r31
jmp int_vertical_sync_end
check_if_released:
lds r31, button_next_image
cpi r31, 1
brne int_vertical_sync_end
; here button is released
; read transition mode
in r31, IO(PINB)
andi r31, 0x04
; if transition mode == 1, then always show image
; Nice to have: maybe this can be written better.
breq 1f
ldi r31, 0
sts show_image, r31
1:
lds r31, show_image
cpi r31, 1
breq 1f
ldi r31, 1
sts show_image, r31
rjmp 2f
1:
ldi r31, 0
sts show_image, r31
rjmp end_button_release
2:
; show image
ldi zl, pm_lo8(line_jump_table_0)
ldi zh, pm_hi8(line_jump_table_0)
clr yl
lds yh, image
inc yh
sts image, yh
add zh, yh
add zh, yh
sts current_jump_table, zl
sts current_jump_table + 1, zh
ldi r31, 0x01
sts show_image, r31
end_button_release:
clr yl
sts button_next_image, yl
int_vertical_sync_end:
pop yh
pop yl
pop zh
pop zl
out IO(SREG), r31
pop r31
reti