Skip to content

Commit

Permalink
Update copyright years
Browse files Browse the repository at this point in the history
  • Loading branch information
Jartza committed May 24, 2016
1 parent 98837d4 commit 1b85c4b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion font.inc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; 32 x 16 character VGA output with UART for Attiny85. ;;
;; ;;
;; ;;
;; Copyright 2015 Jari Tulilahti ;;
;; Copyright 2015-2016 Jari Tulilahti ;;
;; ;;
;; All right and deserved ;;
;; ;;
Expand Down
4 changes: 2 additions & 2 deletions graphfont.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Quick'n'Dirty Font Creator & Reorganizer for Attiny85 VGA.
#
# Copyright 2015 Jari Tulilahti
# Copyright 2015-2016 Jari Tulilahti
#
# All right and deserved.
#
Expand Down Expand Up @@ -44,7 +44,7 @@
f.write( ";; 32 x 16 character VGA output with UART for Attiny85. ;;\n")
f.write( ";; ;;\n")
f.write( ";; ;;\n")
f.write( ";; Copyright 2015 Jari Tulilahti ;;\n")
f.write( ";; Copyright 2015-2016 Jari Tulilahti ;;\n")
f.write( ";; ;;\n")
f.write( ";; All right and deserved ;;\n")
f.write( ";; ;;\n")
Expand Down
2 changes: 1 addition & 1 deletion pixels.inc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; 32 x 16 character VGA output with UART for Attiny85. ;;
;; ;;
;; ;;
;; Copyright 2015 Jari Tulilahti ;;
;; Copyright 2015-2016 Jari Tulilahti ;;
;; ;;
;; All right and deserved ;;
;; ;;
Expand Down
4 changes: 2 additions & 2 deletions tests/ansitester.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Very simple ANSI-tester Python application for Attiny85 VGA ##
## ##
## ##
## (C) Copyright 2015 Jari Tulilahti ##
## (C) Copyright 2015-2016 Jari Tulilahti ##
## ##
## All right and deserved. ##
## ##
Expand Down Expand Up @@ -195,7 +195,7 @@ def rndclear(c = 32, fg = 7, bg = 0):
"Industry standard VGA 640x480 @ 60Hz. "

move_to(0, 2);
serwrite(" (C) 2015 // Jartza\n")
serwrite(" (C) 2015-2016 // Jartza\n")
serwrite("\n")
serwrite(" Attiny85 running @ 20MHz\n")

Expand Down
6 changes: 3 additions & 3 deletions vga.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; ;;
;; 32 x 16 character VGA output with UART for Attiny85. ;;
;; ;;
;; (C) Copyright 2015 Jari Tulilahti ;;
;; (C) Copyright 2015-2016 Jari Tulilahti ;;
;; ;;
;; All right and deserved. ;;
;; ;;
Expand Down Expand Up @@ -254,7 +254,7 @@ main:
slave_sync:
; We continue here after INT0 has triggered.
;
cli
cli ; Disable interrupts for good (rest of code in busyloop)
out GIMSK, zero ; Disable INT0

; Sync vertical line
Expand Down Expand Up @@ -1160,7 +1160,7 @@ done_one_row:
ldi XH, high(screenbuf)

no_buffer_overflow:
in temp, SPLIT_ROW ; See where the text
in temp, SPLIT_ROW ; See where the text
cp char_row, temp ; mode starts from
brlo next_row_text

Expand Down
4 changes: 2 additions & 2 deletions vgafont.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Quick'n'Dirty Font Creator & Reorganizer for Attiny85 VGA.
#
# Copyright 2015 Jari Tulilahti
# Copyright 2015-2016 Jari Tulilahti
#
# All right and deserved.
#
Expand Down Expand Up @@ -60,7 +60,7 @@
f.write( ";; 32 x 16 character VGA output with UART for Attiny85. ;;\n")
f.write( ";; ;;\n")
f.write( ";; ;;\n")
f.write( ";; Copyright 2015 Jari Tulilahti ;;\n")
f.write( ";; Copyright 2015-2016 Jari Tulilahti ;;\n")
f.write( ";; ;;\n")
f.write( ";; All right and deserved ;;\n")
f.write( ";; ;;\n")
Expand Down

0 comments on commit 1b85c4b

Please sign in to comment.