tetris/main.S

241 lines
5.6 KiB
ArmAsm
Raw Normal View History

2024-02-20 12:50:23 +01:00
.file "main.S"
#include <msp430g2553.h>
2024-02-27 15:10:38 +01:00
#include "colors.h"
2024-02-20 12:50:23 +01:00
#define PC r0
#define SP r1
#define SR r2
2024-02-27 17:32:16 +01:00
#define SIGNAL_REGISTER r4
2024-02-27 18:30:08 +01:00
#define SIGNAL_OCTET_DONE 0x01
#define SIGNAL_ISR_ENABLE 0x02
#define SIGNAL_ALL_DATA_DONE 0x04
2024-02-27 17:45:40 +01:00
#define DATA_NEXT_ADDRESS_REGISTER r7
#define DATA_END_ADDRESS_REGISTER r8
#define DATA_REGISTER r5
#define NEXT_DATA_REGISTER r9
#define BIT_COUNTER_REGISTER r6
2024-02-27 17:48:22 +01:00
#define BIT_COUNTER_INIT_VALUE 0x01
2024-02-27 17:45:40 +01:00
2024-02-27 18:59:57 +01:00
;; 2.48us
#define TIMER_COMPLETE 45
;; 1.18us
#define TIMER_LONG 22
;; 550ns
#define TIMER_SHORT 10
.macro set_data_bit
bis #BIT0, &P1OUT
.endm
.macro clear_data_bit
bic #BIT0, &P1OUT
.endm
.macro set_output_enable
bis #BIT1, &P1OUT
.endm
.macro clear_output_enable
bic #BIT1, &P1OUT
.endm
2024-02-27 19:09:50 +01:00
.macro set_debug
bis #BIT2, &P1OUT
.endm
.macro clear_debug
bic #BIT2, &P1OUT
.endm
2024-02-27 17:32:16 +01:00
2024-02-27 15:32:35 +01:00
.section ".data"
2024-02-23 10:39:57 +01:00
screendata:
2024-02-27 20:39:27 +01:00
.rept 5
2024-02-27 15:32:35 +01:00
.byte 0
.endr
2024-02-23 21:20:16 +01:00
screendataend:
2024-02-27 15:32:35 +01:00
.byte 0xff
2024-02-27 16:58:43 +01:00
.section ".rodata"
.extern screendata_tmpl
.extern colors
2024-02-23 10:39:57 +01:00
2024-02-20 12:50:23 +01:00
;; .text is the name of the section, it is a hint for the linker to
;; allocate the section
;; ax: a means allocatable by linker, x means executable
;; @progbits is a hint for the linker to allocate this section into
;; program memory (flash)
.section ".text","ax",@progbits
_start:
;; disable watchdog
mov.w #WDTPW|WDTHOLD,&WDTCTL
;; configure clock system to the highest frequency
mov.b #DCO0|DCO1|DCO2,&DCOCTL
mov.b #XT2OFF|RSEL0|RSEL1|RSEL2|RSEL3,&BCSCTL1
mov.b #0,&BCSCTL2
mov.b #0,&BCSCTL3
;; initialize stack pointer with value from linker
mov.w #__stack, SP
2024-02-27 15:33:45 +01:00
;; ----------------------------------------------
;; load data from template area in rom into ram
2024-02-27 17:48:22 +01:00
;; uses arbitrary register before loading registers
;; for later use
2024-02-27 15:32:35 +01:00
mov.w #screendata, r7
mov.w #screendataend, r8
mov.w #screendata_tmpl, r9
_start_load_next:
mov.b @r9, @r7
inc.w r7
inc.w r9
cmp.w r7, r8
jnz _start_load_next
2024-02-27 15:33:45 +01:00
;; ----------------------------------------------
2024-02-27 15:32:35 +01:00
2024-02-20 12:50:23 +01:00
init:
2024-02-23 10:39:57 +01:00
;; configuration of GPIO Ports
2024-02-27 19:11:36 +01:00
;; BIT0: data bit
;; BIT1: output enable
;; BIT2: debug
2024-02-23 10:39:57 +01:00
mov.b #BIT0|BIT1|BIT2,&P1DIR
2024-02-27 11:25:57 +01:00
mov.b #0,&P1OUT
2024-02-27 19:11:36 +01:00
;; BIT4: long pulse
;; BIT1: short pulse
2024-02-23 10:39:57 +01:00
mov.b #BIT1|BIT4,&P2DIR
mov.b #BIT1|BIT4,&P2SEL
2024-02-20 12:50:23 +01:00
;; timer configuration
;; configure and stop timer
;; cycle time is 56.25ns
2024-02-23 10:39:57 +01:00
mov.w #ID_0|MC_0|TACLR|TASSEL_2,&TA1CTL
2024-02-20 12:50:23 +01:00
;; 2.0us
2024-02-27 18:59:57 +01:00
mov.w #TIMER_COMPLETE,&TA1CCR0
2024-02-20 12:50:23 +01:00
;; a bit less
2024-02-27 18:59:57 +01:00
mov.w #TIMER_SHORT,&TA1CCR1
mov.w #TIMER_LONG,&TA1CCR2
2024-02-20 12:50:23 +01:00
;; configure output mode for TA0.1
2024-02-23 10:39:57 +01:00
mov.w #CCIE,&TA1CCTL0
mov.w #OUTMOD_7,&TA1CCTL1
mov.w #OUTMOD_7,&TA1CCTL2
;; initialize bit-counter for isr
2024-02-27 17:48:22 +01:00
mov.b #BIT_COUNTER_INIT_VALUE, BIT_COUNTER_REGISTER
2024-02-27 11:25:57 +01:00
;; initialize isr-sync register, signal BYTE_DONE for the first start
2024-02-27 18:30:08 +01:00
mov.b #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-23 10:39:57 +01:00
2024-02-23 21:20:16 +01:00
;; screen data start/next into r7
2024-02-27 17:45:40 +01:00
mov.w #screendata, DATA_NEXT_ADDRESS_REGISTER
2024-02-23 21:20:16 +01:00
;; screen data end into r8
2024-02-27 17:45:40 +01:00
mov.w #screendataend, DATA_END_ADDRESS_REGISTER
2024-02-23 21:20:16 +01:00
2024-02-23 10:39:57 +01:00
;; start timer in up mode
bis.w #MC0,&TA1CTL
2024-02-20 12:50:23 +01:00
;; enable interrupts
eint
mainloop:
2024-02-23 10:39:57 +01:00
;; prepare next byte to handle by isr
2024-02-27 17:45:40 +01:00
cmp.w DATA_NEXT_ADDRESS_REGISTER, DATA_END_ADDRESS_REGISTER
2024-02-27 11:25:57 +01:00
jz mainloop_data_done
;; load next data byte
2024-02-27 17:45:40 +01:00
mov.b @DATA_NEXT_ADDRESS_REGISTER, NEXT_DATA_REGISTER
inc.w DATA_NEXT_ADDRESS_REGISTER
2024-02-23 10:39:57 +01:00
2024-02-27 14:23:32 +01:00
;; multiple color code by four to get color data
2024-02-27 17:45:40 +01:00
rla.b NEXT_DATA_REGISTER
rla.b NEXT_DATA_REGISTER
2024-02-27 14:23:32 +01:00
;; enable isr
2024-02-27 18:30:08 +01:00
bis #SIGNAL_ISR_ENABLE, SIGNAL_REGISTER
2024-02-27 14:23:32 +01:00
mainloop_wait_for_isr_0:
2024-02-23 10:39:57 +01:00
;; check bit0 in sync register
2024-02-27 18:30:08 +01:00
bit #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-27 14:23:32 +01:00
jz mainloop_wait_for_isr_0
2024-02-23 10:39:57 +01:00
;; load data
2024-02-27 17:45:40 +01:00
mov.b colors(NEXT_DATA_REGISTER), DATA_REGISTER
2024-02-27 14:23:32 +01:00
;; clear BYTE_DONE
2024-02-27 18:30:08 +01:00
bic #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-27 14:23:32 +01:00
mainloop_wait_for_isr_1:
;; check bit0 in sync register
2024-02-27 18:30:08 +01:00
bit #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-27 14:23:32 +01:00
jz mainloop_wait_for_isr_1
;; load data
2024-02-27 17:45:40 +01:00
mov.b colors+1(NEXT_DATA_REGISTER), DATA_REGISTER
2024-02-27 14:23:32 +01:00
;; clear BYTE_DONE
2024-02-27 18:30:08 +01:00
bic #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-27 14:23:32 +01:00
mainloop_wait_for_isr_2:
;; check bit0 in sync register
2024-02-27 18:30:08 +01:00
bit #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-27 14:23:32 +01:00
jz mainloop_wait_for_isr_2
;; load data
2024-02-27 17:45:40 +01:00
mov.b colors+2(NEXT_DATA_REGISTER), DATA_REGISTER
2024-02-27 11:25:57 +01:00
;; clear BYTE_DONE
2024-02-27 18:30:08 +01:00
bic #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-23 10:39:57 +01:00
;; continue
2024-02-20 12:50:23 +01:00
jmp mainloop
2024-02-27 11:25:57 +01:00
mainloop_data_done:
;; signal all data processed, isr finish
2024-02-27 18:30:08 +01:00
bis #SIGNAL_ALL_DATA_DONE, SIGNAL_REGISTER
2024-02-27 19:09:50 +01:00
set_debug
2024-02-27 11:25:57 +01:00
;; continue
jmp mainloop
2024-02-23 21:20:16 +01:00
2024-02-20 12:50:23 +01:00
; --- timer isr ---
2024-02-23 10:39:57 +01:00
;; r6: exclusively used by isr as bit-counter
timer1_a0_isr:
2024-02-27 11:25:57 +01:00
;; check isr enable bit
2024-02-27 18:30:08 +01:00
bit #SIGNAL_ISR_ENABLE, SIGNAL_REGISTER
2024-02-27 11:25:57 +01:00
jz timer1_a0_isr_exit
2024-02-23 10:39:57 +01:00
2024-02-27 11:25:57 +01:00
;; shift msb of data register r5 into carry flag and set or reset P1.0 accordingly
2024-02-27 17:45:40 +01:00
rla.b DATA_REGISTER
2024-02-23 10:39:57 +01:00
jnc timer1_a0_isr_false_bit
2024-02-27 18:59:57 +01:00
set_data_bit
2024-02-23 10:39:57 +01:00
jmp timer1_a0_isr_end
timer1_a0_isr_false_bit:
2024-02-27 18:59:57 +01:00
clear_data_bit
2024-02-23 10:39:57 +01:00
timer1_a0_isr_end:
2024-02-27 11:25:57 +01:00
;; enable output
2024-02-27 18:59:57 +01:00
set_output_enable
2024-02-27 11:25:57 +01:00
;; roll bit-counter
2024-02-27 17:45:40 +01:00
rla.b BIT_COUNTER_REGISTER
2024-02-23 10:39:57 +01:00
jnc timer1_a0_isr_exit
;; reset bit-counter
2024-02-27 17:48:22 +01:00
mov.b #BIT_COUNTER_INIT_VALUE, BIT_COUNTER_REGISTER
2024-02-23 10:39:57 +01:00
;; signal byte done
2024-02-27 18:30:08 +01:00
bis #SIGNAL_OCTET_DONE, SIGNAL_REGISTER
2024-02-27 11:25:57 +01:00
2024-02-27 17:32:16 +01:00
;; check whether all data are processed
2024-02-27 18:30:08 +01:00
bit #SIGNAL_ALL_DATA_DONE, SIGNAL_REGISTER
2024-02-27 11:25:57 +01:00
jz timer1_a0_isr_exit
;; disable isr
2024-02-27 18:30:08 +01:00
bic #SIGNAL_ISR_ENABLE, SIGNAL_REGISTER
2024-02-27 11:25:57 +01:00
;; disable output
2024-02-27 18:59:57 +01:00
clear_output_enable
2024-02-23 10:39:57 +01:00
timer1_a0_isr_exit:
reti
2024-02-20 12:50:23 +01:00
2024-02-23 10:39:57 +01:00
.section "__interrupt_vector_14","ax",@progbits
.word timer1_a0_isr
2024-02-20 12:50:23 +01:00
;; .resetvec comes from linker
.section ".resetvec","ax",@progbits
.word _start
.end