update date, add license file

This commit is contained in:
4am 2016-11-03 12:03:56 -04:00
parent 2d14fb21cd
commit 9f1856e01c
2 changed files with 16 additions and 6 deletions

View File

@ -1,6 +1,7 @@
;
; 4LIVE
; a 4am & san inc hack
; Copyright (c) 2016 by 4am && qkumba
; 100% open source, see LICENSE file
;
!cpu 6502
*=$8000
@ -552,7 +553,7 @@ HandleKeyLineDown
ldy #0
beq SetRow ;always
ClearScreen ; does not clear status line
ClearScreen ; does not clear status line
pha
ldx #(HEIGHT - 2)
lda #$A0
@ -561,7 +562,7 @@ ClearScreen ; does not clear status line
ldy TextCalcHi, x
sty _e+2
ldy #(WIDTH - 1)
_e sta $FFFF, y ; self-modified, above
_e sta $FFFF, y ; self-modified, above
dey
bpl _e
dex
@ -760,8 +761,8 @@ TextCalcLo
LoadSaveStart
;;in the future, this field will contain the number of bytes following for write
;;FileSize ;must be first!
;; !text "4s" ;self-modified
;;FileSize ;must be first!
;; !text "4s" ;self-modified
SaveCH
!byte 0 ;loaded from file if exists
@ -772,7 +773,7 @@ FirstLine ;lines are stored sequentially, not like
!fill WIDTH * 8, $A0
!scrxor $80, " 4LIVE by 4am && qkumba "
!fill WIDTH, $A0
!scrxor $80, " Revision 01 / Serial number 161031 "
!scrxor $80, " Revision 01 / Serial number 161103 "
!fill WIDTH * 2, $A0
!scrxor $80, " https://github.com/a2-4am/4live "
!fill WIDTH * 9, $A0

9
src/LICENSE Normal file
View File

@ -0,0 +1,9 @@
;https://opensource.org/licenses/MIT
Copyright (c) 2016 by 4am && qkumba
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.