Skip to content

Instantly share code, notes, and snippets.

View pfiscarelli's full-sized avatar
💭
00110110 00111000 00110000 00111001

Paul Fiscarelli pfiscarelli

💭
00110110 00111000 00110000 00111001
View GitHub Profile
@pfiscarelli
pfiscarelli / TimberBot.ino
Created May 30, 2020 18:54
TimberBOT - an Arduino sketch to play Timber Man on a TRS-80 Color Computer 3
/*
TimberBOT
by: Paul Fiscarelli
Copyright (c) 2020, Paul Fiscarelli
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@pfiscarelli
pfiscarelli / hello.asm
Created October 7, 2018 00:41
6809 Assembly Code Template
;*******************************************************************************
;* *
;* Hello World demo program *
;* *
;*******************************************************************************
org $4000
Start
@pfiscarelli
pfiscarelli / CoCoBASIC.XML
Last active May 5, 2019 15:35
CoCo BASIC UDL for Notepad++
<NotepadPlus>
<UserLang name="CoCo BASIC" ext="" udlVersion="2.1">
<Settings>
<Global caseIgnored="no" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" />
<Prefix Keywords1="no" Keywords2="yes" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments">00REM 01 02((EOL)) 03&apos; 04((EOL))</Keywords>
<Keywords name="Numbers, prefix1"></Keywords>
<Keywords name="Numbers, prefix2"></Keywords>
@pfiscarelli
pfiscarelli / assem.bat
Last active May 2, 2023 20:09
6809 Coding Environment - 6809 Assembly Batch Script
@echo off & setlocal EnableExtensions EnableDelayedExpansion
cls
:: Set tool paths here
set LWTOOLS_PATH="%USERPROFILE%\Desktop\lwtools"
set TOOLSHED_PATH="%USERPROFILE%\Desktop\toolshed"
set MAME_PATH="%USERPROFILE%\Desktop\MESS"
set VCC_PATH="%USERPROFILE%\Desktop\VCC\VCC.exe"
set XROAR_PATH="%USERPROFILE%\Desktop\XRoar"
set XROAR_COMMAND="%USERPROFILE%\Desktop\XRoar\xroar.exe"
@echo off & setlocal EnableExtensions EnableDelayedExpansion
cls
:: Set tool paths here
set LWTOOLS_PATH="%USERPROFILE%\Desktop\lwtools"
set TOOLSHED_PATH="%USERPROFILE%\Desktop\toolshed"
set MAME_PATH="%USERPROFILE%\Desktop\MESS"
set VCC_PATH="%USERPROFILE%\Desktop\VCC\VCC.exe"
set XROAR_PATH="%USERPROFILE%\Desktop\xroar"
set XROAR_COMMAND="%USERPROFILE%\Desktop\xroar\xroar.exe"
<NotepadPlus>
<UserLang name="6809 Assembly" ext="asm" udlVersion="2.1">
<Settings>
<Global caseIgnored="yes" allowFoldOfComments="yes" foldCompact="no" forcePureLC="0" decimalSeparator="0" />
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments">00; 01 02 03* 04((EOL))</Keywords>
<Keywords name="Numbers, prefix1">0x 0X $ % @ #</Keywords>
<Keywords name="Numbers, prefix2">0x 0X $ % @ #</Keywords>