Advertisement
sombruxo

Untitled

Mar 31st, 2025
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
6502 TASM/64TASS 2.46 KB | Source Code | 0 0
  1. /*
  2.  * ToUpper_USART0.asm
  3.  *
  4.  *  Created: 21/03/2014 15:51:30
  5.  *   Author: Administrador
  6.  */
  7.  .DEF temp = R16  ;temporary register definition
  8.  .EQU lowercase_a = 97  ;ASCII for 'a'
  9.  .EQU lowercase_z = 122 ;ASCII for 'z'
  10.  .EQU TOUPPER = 32 ;to be subtracted from the lowercase to get the uppercase
  11.  .EQU Clock = 16000000 ;processor’s clock frequency, Hz
  12.  .EQU Baud = 9600 ;desired serial port baud rate (bits per second)
  13.  .EQU UBRRvalue = Clock/(Baud*16) -1 ;calculates value to be put in UBRR0H:L
  14.  
  15.  
  16.  .CSEG
  17.  .ORG 0x00000 ;reset interrupt vector
  18.       jmp RESET
  19.  .ORG URXCaddr ; 0x00024  -> interrupt vectors for USART0
  20.       jmp USART0_reception_completed
  21.  
  22. .ORG INT_VECTORS_SIZE ;leave room for IRQ vectors
  23. RESET:
  24.     ;configure USART0
  25.     RCALL init_USART0
  26.     SEI ;enable interrupts globally
  27. Loop:
  28.     ;nothing to do here, just be alive
  29.     NOP
  30.     rjmp Loop
  31. ;------- initialize USART0 as 9600baud, asynchronous, 8 data bits, 1 stop bit, no parity -----
  32. init_USART0:
  33.     PUSH R16
  34.     LDI R16, LOW(UBRRvalue)
  35.     STS UBRR0L, R16   ;load the low byte
  36.     LDI R16, HIGH(UBRRvalue)
  37.     STS UBRR0H, R16   ;load the low byte
  38.     ; enable receive and transmit, enable USART0 interrupts (UDR empty, Tx finished, Rx finished)
  39.     LDI R16, (1<<RXEN0)|(1<< TXEN0)|(0<<UDRIE0)|(0<< TXCIE0)|(1<< RXCIE0)
  40.     STS UCSR0B, R16 ;set control register UCSR0B with the corresponding bits
  41.     ; configure USART 0 as asynchronous, set frame format: 8 data bits, 1 stop bit, no parity
  42.     LDI R16, (0<<UMSEL00) |(1<<UCSZ01)|(1<< UCSZ00) |(0<< USBS0)|(0<<UPM01)|(0<< UPM00)
  43.     STS UCSR0C, R16 ;set control register UCSR0C with the corresponding bits
  44.     POP R16
  45.     RET
  46.  
  47. ;----USART0_reception_completed handler --------------------------------------------------
  48. ;---
  49. USART0_reception_completed:
  50.     PUSH temp ;this handler routine will be automatically called every 61msec (in this example)
  51.     IN temp, SREG ;Backup SREG. MANDATORY in interrupt handler routines
  52.     PUSH temp
  53.    
  54.     ;do the desired periodic task here
  55.     LDS temp, UDR0  ;pick up the byte received and do anything with it
  56.     CPI temp,lowercase_a ;'a'
  57.     BRLT USART0_reception_cont ;not a lowercase letter
  58.     CPI temp,lowercase_z+1 ;'z'+1
  59.     BRGE USART0_reception_cont ;not an lowercase letter
  60.     SUBI temp, TOUPPER ;change to Uppercase
  61.     STS UDR0, temp  ;transmits the [modified] byte
  62.  USART0_reception_cont:
  63.  
  64.     POP temp
  65.     OUT SREG, temp  ;Recover SREG from the previous backup
  66.     POP temp
  67.     RETI ;RETI is MANDATORY when returning from an interrupt handling routine
  68.  
  69. .EXIT
  70.  
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement