View debug.asm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is for the Commodore 64 and requires KickAssembler | |
// Written by Cecil Meeks (cbmeeks) in 2023 | |
// NOTE, this prints whatever is in A to the screen. So load A first. | |
// First, create a simple macro: | |
.macro DebugText_A_Hex(X, Y) { | |
sta ModA + 1 // save A below | |
stx ModX + 1 // save X below | |
sty ModY + 1 // save Y below |
View usb_hid_keys.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* USB HID Keyboard scan codes as per USB spec 1.11 | |
* plus some additional codes | |
* | |
* Created by MightyPork, 2016 | |
* Public domain | |
* | |
* Adapted from: | |
* https://source.android.com/devices/input/keyboard-devices.html | |
*/ |
View main.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
public class Main { | |
public static void main(String[] args) { | |
// write your code here | |
String badNumber = "ABC123"; | |
String goodNumber = "423-867-5309"; |
View main.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
public class Main { | |
public static void main(String[] args) { | |
String badNumber = "ABC123"; | |
String goodNumber = "423-867-5309"; | |
System.out.println("Testing Number " + badNumber); | |
System.out.println("\t" + isValidNumber(badNumber)); |
View stable_raster.asm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is working for NTSC. However, by my calculations, we're at 68 cycles instead of the required 65. | |
That can't be right. Yet, it works. I assume I am making a false assumption on some of the timings. | |
*/ | |
BasicUpstart2(Entry) | |
Entry: |
View Yacht.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Yacht | |
(Yet Another Cycle Hunting Table) | |
------------------------------------------------------------------------------- | |
Forewords : | |
------------------------------------------------------------------------------- | |
This document is based on : | |
- 9th Edition of M68000 8-16-32-bit Microporcessor User's Manual | |
(Motorola, 1993) (laterly refered as M68000UM) |
View helloworld.4th
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: HELLO-WORLD ." Hello world!" ; | |
HELLO-WORLD |
View tinybasic.asm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; v0.2.2 | |
; | |
; Bill O'Neill - Last update: 2011/11/11 | |
; | |
; Monitor code is Open License and can be used freely | |
; Tiny Basic code is Copyright, Tom Pitman | |
; | |
; Consist of a minimal terminal monitor and Tom | |
; Pitman's Tiny Basic as a high-level | |
; programming language |
View c64.asm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;************************************************************************************ | |
;************************************************************************************ | |
; This file was included in the Project 64 Repository after all efforts to contact | |
; Lee Davison, the original author, were proven unsuccessful. The inclusion is meant | |
; to honour his sterling work on providing us with the very best document on every | |
; bit of the Commodore 64's firmware content. We want this to remain available to | |
; the public and allow other members to benefit from Lee's original, excellent job. | |
;************************************************************************************ | |
; $VER:C64LD11.S, included on 2014-11-12 | |
;************************************************************************************ |
View disable.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://serverfault.com/questions/14303/cant-seem-to-disable-java-automatic-update/26568#26568 | |
To turn off/on the Java updater (C:\Program Files\Java\jreXXX\bin\javacpl.exe), put a 0 in the following key: | |
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Update\Policy\EnableJavaUpdate | |
Turn it back on with a 1. | |
Be sure to run javacpl.exe as ADMIN. |
NewerOlder