- Georgia: Harris-stemmer tidlig, så Trump (valgdagen), så kanskje Harris (byene?)
- North Carolina: Harris-stemmer tidlig, så Trump (valgdagen), så kanskje Harris (byene?)
- Michigan: Harris-stemmer tidlig, så Trump (valgdagen), så kanskje Harris på tampen
- Wisconsin: Trump tidlig, så Harris når forhåndsstemmene telles sent
- Pennsylvania: Trump tidlig, så Harris når forhåndsstemmene telles sent
- Arizona: Trump tidlig telte, så Harris i de sene stemmer
- Nevada: Veldig mye forhåndsstemmer fra alle kanter, fort Trump tidlig så Harris sent
I originally played an earlier build which was removed from the server while I played it. Some of these notes are from that build, and might therefore be fixed/outdated in the later build which replaced it.
- Logic:
- It's not clear to me what the point of the kitchen puzzle is. is it just a shortcut/alternate route? for its complexity I kinda expected reaching a new area, but I'd already been in the Break Room/Statue Garden via the tunnels
- "wear glasses" doesn't work? (This might have been fixed in newer build?)
- Missing descriptions:
- Clotho's Yarn: "x group" should work
- Break Room: couch, microwave, lockers
- Typos:
; Based on nitro2k01's code from https://forums.nesdev.org/viewtopic.php?t=14631 | |
; Changes: | |
; - Retains all registers, so a call to this routine can be added anywhere | |
; - Instead of saving all WRAM, just save a set number of bytes (c) | |
; Usage: | |
; - On boot, call LoadSRAM (will init and zero SRAM if needed, then load from SRAM) | |
; - When saving, call SaveSRAM (and then potentially LoadSRAM.sramOK) | |
LoadSRAM: | |
call EnableSram |
; ******************************************************************* | |
; *** *** | |
; *** VIP2K Chip 8 interpreter *** | |
; *** *** | |
; *** This software is copyright 2008 by Marcel van Tongeren *** | |
; *** You have permission to use, modify, copy, and distribute *** | |
; *** this software so long as this copyright notice is retained. *** | |
; *** This software may not be used in commercial applications *** | |
; *** without express written permission from the author. *** | |
; ******************************************************************* |
-rw-r--r--. 1 tvl tvl 5246976 Sep 19 2005 Assorted/01. Anberlin - Ready Fuels.mp3 | |
-rw-r--r--. 1 tvl tvl 6584320 Jan 28 2006 Assorted/01 Boulevard of Broken Songs (Green Day vs. Oasis vs. Travis vs. Eminem).mp3 | |
-rw-r--r--. 1 tvl tvl 5504546 Sep 8 2005 Assorted/01. Era - Ameno (Remix).mp3 | |
-rw-r--r--. 1 tvl tvl 4996345 Apr 12 2007 Assorted/01 I've got the power.mp3 | |
-rw-r--r--. 1 tvl tvl 5320502 Sep 8 2005 Assorted/03. Era - The Mass.mp3 | |
-rwxr-xr-x. 1 tvl tvl 7959453 Jul 29 2007 Assorted/03 Oriental Dark Flight.mp3 | |
-rw-r--r--. 1 tvl tvl 6235670 Sep 19 2005 Assorted/04. Damien Rice - Cannonball.mp3 | |
-rw-r--r--. 1 tvl tvl 6750336 Sep 8 2005 Assorted/04. Disturbed - Down With the Sickness.mp3 | |
-rw-r--r--. 1 tvl tvl 2884438 May 4 2007 Assorted/04 - time is on my side.mp3 | |
-rw-r--r--. 1 tvl tvl 5060608 Sep 19 2005 Assorted/05. Anberlin - Glass To The Arson.mp3 |
drwxr-xr-x. 5 tvl tvl 4096 Feb 9 2008 !!! | |
drwx------. 2 tvl tvl 4096 Feb 24 2007 120 Days | |
drwxr-xr-x. 2 tvl tvl 12288 Jul 8 2008 (1997-02-10) “FINAL FANTASY Ⅶ” Original Sound Track (SSCX-10004) [Ogg Vorbis] | |
-rwxr-xr-x. 1 tvl tvl 3686400 Jul 28 2007 27 Wily Stage.mp3 | |
drwxr-xr-x. 2 tvl tvl 4096 Jan 24 2007 50 Hertz | |
drwxr-xr-x. 3 tvl tvl 4096 Aug 27 2007 8bit betty | |
drwx------. 2 tvl tvl 4096 Mar 5 2008 8bitmayhem | |
drwxr-xr-x. 4 tvl tvl 4096 Mar 18 2008 Air | |
drwxr-xr-x. 3 tvl tvl 4096 Aug 31 2006 All-Time Quarterback | |
drwxr-xr-x. 3 tvl tvl 4096 Jan 10 2006 Ambo |
The CHIP-8 emulator guide has now been finalized and published on my blog.
Please go here to read it: https://tobiasvl.github.io/blog/write-a-chip-8-emulator/
The Markdown source is located here: https://github.com/tobiasvl/tobiasvl.github.io/blob/master/_posts/2020-07-20-write-a-chip-8-emulator.md
If you have this link I'll assume I should thank you for your valuable input while I was writing it. Feel free to continue making suggestions/pull requests over at GitHub!
The CHIP-8 emulator guide has now been finalized and published on my blog.
Please go here to read it: https://tobiasvl.github.io/blog/write-a-chip-8-emulator/
The Markdown source is located here: https://github.com/tobiasvl/tobiasvl.github.io/blob/master/_posts/2020-07-20-write-a-chip-8-emulator.md
If you have this link I'll assume I should thank you for your valuable input while I was writing it. Feel free to continue making suggestions/pull requests over at GitHub!
# switch/case macro, should be followed by a jump table with the same number of entries as cases | |
:macro switch REG { | |
v0 := REG | |
v0 <<= v0 | |
:calc table { HERE + 10 } | |
# for Super-CHIP compatibility, we also load VX for use with jump0 where X is the upper digit of the table's address | |
# note that if the table is located at address 0xA00 or above, we'll clobber necessary registers here! | |
:calc table-reg { table >> 8 } | |
v9 := 0x9 | |
v9 -= v0 |
# Copied from https://github.com/aseprite/aseprite/blob/master/INSTALL.md#skia-on-linux | |
sudo yum install -y gcc-c++ cmake ninja-build libX11-devel libXcursor-devel mesa-libGL-devel fontconfig-devel | |
mkdir $HOME/deps | |
cd $HOME/deps | |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
git clone -b aseprite-m71 https://github.com/aseprite/skia.git | |
export PATH="${PWD}/depot_tools:${PATH}" | |
cd skia |