move stable code to git
0 parent commit bdc898501bc9eb088dfbbfacd9f5e60730b6f555
@tundra tundra authored on 19 Jan 2019
Showing 12 changed files
View
60
count-license.txt 0 → 100644
count - Copyright (c) 2002, TundraWare Inc., All Rights Reserved
 
This license refers to the following files found in the 'count.zip'
archive.
 
count.asm
COUNT.COD
COUNT.ERR
COUNT.HEX
COUNT.LST
COUNT.XRF
Makefile
 
Hereafter, these files are referred to collectively as the "Count Files".
 
**********
* PLEASE NOTE: The files found in the TAIT-Test subdirectory of this
* archive are from David Tait. THEY ARE NOT PART OF THE COUNT FILES
* AND ARE NOT A SUBJECT OF THIS LICENSE AGREEMENT. The files in the
* TAIT-Test subdirectory remain the property of Mr. Tait who has
* given permission for their distribution.
**********
 
Permission to use and distribute the Count Files is hereby granted so
long as ALL the following conditions are met:
 
1) The user of the Count Files understands and agrees that this is
experimental software which is provided "AS-IS" with no
warranties expressed or implied by TundraWare Inc.
 
2) The user acknowledges the Count Files has NOT been tested for:
a) Correct operation
b) Freedom from unintended consequences
c) Any operation or condition which might cause damage to
the user's machine, software, network, or data, or which
might cause any breach of system security of the user's
system(s) or any other systems.
 
3) By using the Count Files, the user does so at their own risk and
agrees to hold TundraWare Inc. harmless for any damage,
direct or indirect, that this software may or does cause to
the user's computational environment, including, but not
limited to, the user's hardware, software, network, or data.
The user further agrees to hold TundraWare Inc. harmless for
any economic damage or any other adverse consequence, direct
or indirect, caused by the use of the Count Files.
 
4) If duplicated and/or distributed, no fee beyond reasonable
duplication charges may be charged for the Count Files.
 
5) Any distributed copies of the Count Files must include all the
originally provided software, documentation, and licensing
information.
 
If you do not understand, or cannot abide by any of these conditions,
DO NOT USE the Count Files.
 
To report bugs or suggest improvements, contact: tundra@tundraware.com
 
View
128
count.asm 0 → 100644
; COUNT.ASM
; Copyright (c) 2002, TundraWare Inc.
;
; Loosely based on David Tait's LED 'WALK.ASM' Test Program
; Uses same hardware setup but counts in binary, flashing at
; full count.
 
;;; Generally speaking, UPPER-CASE symbols in the code below are
;;; defined in the standard MPLAB include file. My code is in
;;; lower-case.
list p=16F84A
#include <P16F84A.INC>
 
errorlevel -302 ;suppress bank selection messages
__config 3ff5h ;xt osc, watchdog
__idlocs 1234
;;; Device Constants
 
pre1 equ 08h ; prescaler constants
pre2 equ 09h
pre4 equ 0ah
pre8 equ 0bh
pre16 equ 0ch
pre32 equ 0dh
pre64 equ 0eh
pre128 equ 0fh
 
 
;;; Program Constants
blinkcnt equ 05h ; number of times to blink
bcount equ 0dh ; register to hold blink count
maxcnt equ 0fh ; maximum count to display
preblink equ pre32 ; prescaler value for blinking
precount equ pre16 ; prescaler value for counting
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
;;;
; Main program logic
;;;
 
begin call portb_w ; setup PORTB for writing
movlw precount ; set prescaler for slow disply
call wdt_pre
movlw maxcnt ; number of counts
clrf PORTB ; all leds off
count sleep ; display current count for a while
incf PORTB,F ; next value to display
movf PORTB,W ; see if we're displaying 'maxcnt'
andlw 0fh ; mask hi nibble - no LEDs there
xorlw maxcnt ; subtract 'maxcnt' from w
btfss STATUS,Z
goto count ; nope, continue counting
call blink
goto begin
 
;;; End of main logic
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
;;;
; Supporting Subroutines
;;;
 
;;;
; Set PORTB To Write
; Returns with Bank 0 selected
;;;
 
portb_w bsf STATUS,RP0 ; select register bank 1
clrf TRISB ; set PORTB to all outputs
bcf STATUS,RP0 ; select register bank 0
return
 
;;; End of 'portb_w'
 
;;;
; Set the WDT Prescaler
; Value required must be passed in w
; Returns with Bank 0 selected
;;;
 
wdt_pre bsf STATUS,RP0 ; select register bank 1
movwf OPTION_REG
bcf STATUS,RP0 ; bank0 so PORTB is addressable
return
 
;;; End of 'wdt_pre'
 
 
;;;
; Blink The Lights
;;;
blink movlw preblink ; set prescaler for fast blink
call wdt_pre
movlw blinkcnt ; number of times to blink
movwf bcount
bcycle sleep ; display on from caller
clrf PORTB ; display off
sleep
decfsz bcount,F ; if zero, we've done 'blinkcnt' repetitions
goto again ; we're not done yet
return ; all done
again movlw maxcnt ; blink again - display on
movwf PORTB
goto bcycle
;;; End of 'blink'
 
 
;;;
; EEPROM Contents
;;;
org 2100h
;
DE "$Id: count.asm,v 1.9 2002/03/10 15:43:56 tundra Exp tundra $"
END
 
View
count.cod 0 → 100644
Not supported
View
count.err 0 → 100644
View
count.hex 0 → 100644
View
count.lst 0 → 100644
View
count.xrf 0 → 100644
View
makefile 0 → 100644
View
readme.txt 0 → 100644
View
tait-test/test.pcx 0 → 100644
View
tait-test/walk.asm 0 → 100644
View
tait-test/walk.hex 0 → 100644