repo
string
commit
string
message
string
diff
string
lachie/roro-faces
e16c601690f4666fc8b94486badbec54f58f5f27
added spield and analogue blog to meetings, committed from the air near adelaide
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 47a586e..4bf5ecb 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1,130 +1,134 @@ # Methods added to this helper will be available to all templates in the application. module ApplicationH...
lachie/roro-faces
cf6d1269b31493de1ea40f896d60e5414d4202ce
fixed up preso add link
diff --git a/app/views/meetings/show.html.haml b/app/views/meetings/show.html.haml index 7530d86..5125e00 100644 --- a/app/views/meetings/show.html.haml +++ b/app/views/meetings/show.html.haml @@ -1,15 +1,15 @@ %h3 %a{:href => group_path(@group)}=@group.name , =@meeting %ul -@meeting.presos.each do |p...
lachie/roro-faces
2c175347430314ed1fa626183474e6e3b08b4109
added omitted files
diff --git a/app/views/admin/meetings/_form.html.haml b/app/views/admin/meetings/_form.html.haml new file mode 100644 index 0000000..b06cafb --- /dev/null +++ b/app/views/admin/meetings/_form.html.haml @@ -0,0 +1,15 @@ + +-form_for(meeting,:url => polymorphic_path([:admin,@group,meeting])) do |f| + .set + =f.label ...
lachie/roro-faces
d8caf14355a9aa7e61b2c4d6f1b911a06201fd30
more work for admin interface
diff --git a/app/controllers/admin/meetings_controller.rb b/app/controllers/admin/meetings_controller.rb index 08de448..6ca60ac 100644 --- a/app/controllers/admin/meetings_controller.rb +++ b/app/controllers/admin/meetings_controller.rb @@ -1,17 +1,26 @@ class Admin::MeetingsController < Admin::ApplicationController...
lachie/roro-faces
942c3a379efbe2603e1762c38cd3d320a5087980
added detail to admin
diff --git a/app/controllers/admin/groups_controller.rb b/app/controllers/admin/groups_controller.rb index e7589ee..0860b1e 100644 --- a/app/controllers/admin/groups_controller.rb +++ b/app/controllers/admin/groups_controller.rb @@ -1,10 +1,10 @@ -class Admin::GroupsController < ApplicationController +class Admin::Gr...
lachie/roro-faces
3f1e30cc937329e9ed81d73122a6cc6852c67611
more app stubs
diff --git a/app/controllers/admin/application_controller.rb b/app/controllers/admin/application_controller.rb index 6ab5af4..3decea9 100644 --- a/app/controllers/admin/application_controller.rb +++ b/app/controllers/admin/application_controller.rb @@ -1,16 +1,18 @@ module Admin class ApplicationController < ::Appl...
lachie/roro-faces
95fec2ed00352643071e46e455ce77072f01492d
Should get the tests passing prolly
diff --git a/spec/hornsby_scenarios.rb b/spec/hornsby_scenarios.rb index 430be96..88245b2 100644 --- a/spec/hornsby_scenarios.rb +++ b/spec/hornsby_scenarios.rb @@ -1,10 +1,14 @@ scenario :valid_users do @carl_mugshot = Mugshot.create! :size => 10_000, :content_type => 'image/png', :filename => 'foo.png' - @bob...
lachie/roro-faces
e90dfb280662599f93568031a73d813ad5e2478b
Yeehaw, the quickest and dirtiest openid auth ever. You currently need to associate openid with an existing account (can't do it at signup)
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 2258521..9927a8d 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -1,63 +1,94 @@ require 'base64' class AccountsController < ApplicationController # Be sure to inc...
lachie/roro-faces
c42ee40361f0521df15b08684331c9b23321ab44
added admin stubs
diff --git a/app/controllers/admin/application_controller.rb b/app/controllers/admin/application_controller.rb new file mode 100644 index 0000000..6ab5af4 --- /dev/null +++ b/app/controllers/admin/application_controller.rb @@ -0,0 +1,16 @@ +module Admin + class ApplicationController < ::ApplicationController + befo...
lachie/roro-faces
27e182607a1af341a6a1744e4588a8deb5c63363
added user search
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 5b3f69f..b2322a3 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -1,188 +1,195 @@ class UsersController < ApplicationController #skip_before_filter :login_from_cookie, :except =...
raymyers/haml4grails
fb924bf6e3824d5bc0a4fbc93c74c00c7247d848
Version bumps. Correction to installation message.
diff --git a/.classpath b/.classpath index 324e29c..c2e0f6f 100644 --- a/.classpath +++ b/.classpath @@ -1,20 +1,15 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src/java"/> <classpathentry kind="src" path="src/groovy"/> <classpathentry kind="src" path="grails-app/conf"/...
raymyers/haml4grails
2eb3def6a5c388fc4736da62840b923170427acb
Version bump for dependency fix.
diff --git a/HamlGrailsPlugin.groovy b/HamlGrailsPlugin.groovy index 6d054a8..dda0ada 100644 --- a/HamlGrailsPlugin.groovy +++ b/HamlGrailsPlugin.groovy @@ -1,73 +1,73 @@ import org.springframework.core.io.FileSystemResource; import com.cadrlife.jhaml.grailsplugin.HamlGroovyPageResourceLoader; class HamlGrailsPl...
raymyers/haml4grails
12b988498d71dea105825b6a6629337863606270
Added JHaml link in readme.
diff --git a/README.md b/README.md index 8680929..ebd9206 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,31 @@ # haml4grails -Grails haml support +Grails haml support, using [JHaml](http://www.github.com/raymyers/JHaml). ## Using First install the plugin... grails install plugin path/to/gra...
raymyers/haml4grails
d7e3bcf3d5860eb9766b5bca828a1a6b9d1aa1e2
change readme
diff --git a/README.md b/README.md index 20ec709..8680929 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,31 @@ # haml4grails Grails haml support ## Using First install the plugin... - grails install plugin haml + grails install plugin path/to/grails-haml-0.1.zip Then add the followin...
raymyers/haml4grails
e27797dd70e4bad46e99a8ea4923a74e47b431cc
Repackage
diff --git a/HamlGrailsPlugin.groovy b/HamlGrailsPlugin.groovy index 160288f..6d054a8 100644 --- a/HamlGrailsPlugin.groovy +++ b/HamlGrailsPlugin.groovy @@ -1,70 +1,73 @@ import org.springframework.core.io.FileSystemResource; import com.cadrlife.jhaml.grailsplugin.HamlGroovyPageResourceLoader; class HamlGrailsPl...
raymyers/haml4grails
06cbcbcf6961beeee083c614497a30d1cceb66d2
Add license file
diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..3d90694 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is p...
raymyers/haml4grails
c70e5e7bb14ff024fbaca265124c6aeeb4fe30f4
Getting ready for initial release.
diff --git a/HamlGrailsPlugin.groovy b/HamlGrailsPlugin.groovy index 71cc565..160288f 100644 --- a/HamlGrailsPlugin.groovy +++ b/HamlGrailsPlugin.groovy @@ -1,61 +1,70 @@ import org.springframework.core.io.FileSystemResource; import com.cadrlife.jhaml.grailsplugin.HamlGroovyPageResourceLoader; class HamlGrailsPl...
tobie/unittest_js_caja_builder
fa63027ca9ac263d52762f2bb877293c876630a4
Add a refresh method to AssetsHandler.
diff --git a/lib/caja_builder/assets_handler.rb b/lib/caja_builder/assets_handler.rb index 4e12dd2..c3cad3c 100644 --- a/lib/caja_builder/assets_handler.rb +++ b/lib/caja_builder/assets_handler.rb @@ -1,37 +1,47 @@ module UnittestJS module CajaBuilder class AssetsHandler < UnittestJS::Builder::AssetsHandler ...
tobie/unittest_js_caja_builder
1f833d85453ea1d0cf5cbc845056a808966ed573
Separate unittest lib assets and user assets into two.
diff --git a/lib/caja_builder/assets_handler.rb b/lib/caja_builder/assets_handler.rb index 524e942..4e12dd2 100644 --- a/lib/caja_builder/assets_handler.rb +++ b/lib/caja_builder/assets_handler.rb @@ -1,37 +1,37 @@ module UnittestJS module CajaBuilder class AssetsHandler < UnittestJS::Builder::AssetsHandler ...
tobie/unittest_js_caja_builder
6a05bed67e139404033c938e57bee9e0d69a1071
Enable iFrame-based result transport.
diff --git a/assets/test_loader.js b/assets/test_loader.js index afb0cfd..6a0cc9f 100644 --- a/assets/test_loader.js +++ b/assets/test_loader.js @@ -1,15 +1,14 @@ (function() { - var imports = ___.copy(___.sharedImports); imports.outers = imports; var htmlRoot = document.getElementById('base-test'); atta...
tobie/unittest_js_caja_builder
aeda517c2e82db92bc88d56ed68fa4ce05f487a9
Fixed container template.
diff --git a/templates/caja_container.erb b/templates/caja_container.erb index e481906..0c43680 100644 --- a/templates/caja_container.erb +++ b/templates/caja_container.erb @@ -1,26 +1,26 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <m...
stephenlombardi/icggame
163d628971fab068f739bd925294edd6e351e122
fixed some more g++ errors
diff --git a/src/GameModel.cpp b/src/GameModel.cpp index d9f28e3..8d3d919 100644 --- a/src/GameModel.cpp +++ b/src/GameModel.cpp @@ -1,646 +1,646 @@ #include "GameModel.h" float uniformRand( ) { - return (float)rand( ) / RAND_MAX; + return (float)std::rand( ) / RAND_MAX; } float sphereIntersection( const vec3f ...
stephenlombardi/icggame
6a59ae3fd9ff805a903a91618eafdf2f609a8f00
fixed a few compile errors when using g++
diff --git a/src/ActorControllerKeyboardFP.cpp b/src/ActorControllerKeyboardFP.cpp index 795eaae..a4b5ea6 100644 --- a/src/ActorControllerKeyboardFP.cpp +++ b/src/ActorControllerKeyboardFP.cpp @@ -1,55 +1,55 @@ #include "ActorControllerKeyboardFP.h" ActorControllerKeyboardFP::ActorControllerKeyboardFP( const GameVi...
stephenlombardi/icggame
dd2b43187522106e8f2038c6311eeab5fdaf0b3d
cleaned some things up in GameView
diff --git a/src/GameView.cpp b/src/GameView.cpp index 3d85d21..2e52402 100644 --- a/src/GameView.cpp +++ b/src/GameView.cpp @@ -1,3073 +1,2154 @@ #include "GameView.h" bool ProjCmp( const Projectile * proj1, const Projectile * proj2 ) { return std::string( typeid( *proj1 ).name( ) ) < std::string( typeid( *proj2...
stephenlombardi/icggame
59876abda59fee29be6420dbdc927c3668b2ace8
added a shader to do ambient lighting (also writes to the depth buffer)
diff --git a/assets/shaders/deferred/ambient.frag b/assets/shaders/deferred/ambient.frag new file mode 100644 index 0000000..ca4a092 --- /dev/null +++ b/assets/shaders/deferred/ambient.frag @@ -0,0 +1,17 @@ +#version 150 + +uniform sampler2D albedotex; +uniform sampler2D normaltex; +uniform sampler2D depthtex; + +out v...
stephenlombardi/icggame
367b309e979350fc6d1dddc78ce7bde78c198d05
fixed small collision bug
diff --git a/VS2008/icggame/icggame.suo b/VS2008/icggame/icggame.suo deleted file mode 100644 index ebc3ace..0000000 Binary files a/VS2008/icggame/icggame.suo and /dev/null differ diff --git a/src/GameModel.cpp b/src/GameModel.cpp index db86b00..d9f28e3 100644 --- a/src/GameModel.cpp +++ b/src/GameModel.cpp @@ -1,845 +...
MicrosystemsLab/PiezoD
12173df642d1693b7c6304a482bf8107cf9ed926
fixed a typo
diff --git a/matlab/PiezoD/cantilever.m b/matlab/PiezoD/cantilever.m index 50028a3..9e59432 100644 --- a/matlab/PiezoD/cantilever.m +++ b/matlab/PiezoD/cantilever.m @@ -1,990 +1,990 @@ % Abstract cantilever base class % Used by subclasses to implement common cantilever features % The code is formatted to be < 85 col...
MicrosystemsLab/PiezoD
766bc0151c3bb87ac1674492b875ac38ba1447c2
Current state of python work
diff --git a/.gitignore b/.gitignore index 633e4dc..081c6f2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,20 +1,21 @@ # IntelliJ .idea *.iml +*.pyc ############# ## Windows detritus ############# # Windows image file caches Thumbs.db ehthumbs.db # Folder config file Desktop.ini # Recycle Bin used o...
MicrosystemsLab/PiezoD
2911b8cedd796ea8c4c17cfe8201823f0c24abe3
Reorganizing
diff --git a/lookupTables/lookupTable.mat b/lookupTableGeneration/lookupTable.mat similarity index 100% rename from lookupTables/lookupTable.mat rename to lookupTableGeneration/lookupTable.mat diff --git a/lookupTables/postProcessTables.m b/lookupTableGeneration/postProcessTables.m similarity index 97% rename from look...
MicrosystemsLab/PiezoD
d59b71f6adb5061b19eb90b55986e68786d04dd6
Housekeeping
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..633e4dc --- /dev/null +++ b/.gitignore ...
MicrosystemsLab/PiezoD
325cc5df872897680e612894be925fea9fdfa6ee
lots of file and documentation changes associated with the 0.7.1 release
diff --git a/Docs/cgi-bin/download.php b/Docs/cgi-bin/download.php new file mode 100644 index 0000000..bccc601 --- /dev/null +++ b/Docs/cgi-bin/download.php @@ -0,0 +1,86 @@ +<?php + $path = getcwd(); + // Get name of file to be downloaded + $fname = $_GET['file']; + + //Check for various invalid files, and loop...
MicrosystemsLab/PiezoD
6b4b275e43c4eb83e84fc2ca34b251aa4e04337c
1) several bug fixes and speed optimizations. 2) reworked sheet resistance computation to properly use the ion implantation lookup table. 3) switched to using sqp rather than interior-point for optimization for better warm start behavior and ion implantation optimization.
diff --git a/cantilever.m b/cantilever.m index b6d0827..1c10f0a 100755 --- a/cantilever.m +++ b/cantilever.m @@ -1,3008 +1,3015 @@ % Abstract cantilever base class % Used by subclasses to implement common cantilever features % The code is formatted to be < 85 columns wide for printing reproduction % % Subclasses ...
MicrosystemsLab/PiezoD
af84ff597151bf5d506387251f4bd1f7bc93f12f
first pass on ion implantation. performance has degraded substantially since my last optimization round due to added model complexity, so this commit also includes a few minor performance optimizations.
diff --git a/cantilever.m b/cantilever.m index 8469e9a..e050e48 100755 --- a/cantilever.m +++ b/cantilever.m @@ -1,2917 +1,2991 @@ % Abstract cantilever base class. Used by subclasses to implement common cantilever features. % The code is quite long. In order to see the overall structure, try folding all of the funct...
MicrosystemsLab/PiezoD
43ecd66ceb8ac99691ba10db87805faaf19dce76
added some missing files
diff --git a/Docs/download.jemdoc b/Docs/download.jemdoc index ddd808f..8c37306 100644 --- a/Docs/download.jemdoc +++ b/Docs/download.jemdoc @@ -1,23 +1,23 @@ # jemdoc: menu{MENU}{download.html} = piezoD - download piezoD is composed of several Matlab classes. You can download official releases from here. - [./...
MicrosystemsLab/PiezoD
3d9626ca51d50c5c88b89da13250773a736735a1
Added piezoelectric and thermal actuation code to the cantilever base class. Fixed some bugs. Rewrote print_performance to eliminate repeated code.
diff --git a/README b/README index 2c17dcc..5f722e2 100644 --- a/README +++ b/README @@ -1,9 +1,80 @@ +=================== General Notes =================== +* Usage + Create a cantilever + c = cantilever_diffusion(1e0, 1e3, 100e-6, 50e-6, 10e-6, 0.5, + 0.5, 0.5, 5, 'boron', 20*60, 1000) + + ...
MicrosystemsLab/PiezoD
790b326d44262e5f75691cd34ea4f2ba0cc2c03b
Added a simulink model and helper functions in order to simulate the sensor force step response, include noise. Also fixed bugs in the sample code so that it runs properly again.
diff --git a/Docs/download.jemdoc b/Docs/download.jemdoc index 8a1072c..7c9dab7 100644 --- a/Docs/download.jemdoc +++ b/Docs/download.jemdoc @@ -1,20 +1,21 @@ # jemdoc: menu{MENU}{download.html} = piezoD - download piezoD is composed of several Matlab classes. You can download official releases from here. +- [./...
MicrosystemsLab/PiezoD
6b162261cba2d8a95f466c9251b12ec6c9ecb249
thermal modeling, code speedup, better thermomechanicaln noise and Q calculations amongst many, many other changes
diff --git a/PECantilever.m b/PECantilever.m new file mode 100644 index 0000000..1820dde --- /dev/null +++ b/PECantilever.m @@ -0,0 +1,1155 @@ +% Notes + +% M-Lint Settings +%#ok<*PROP> + + +classdef PECantilever + + properties + % Constants + n_plot_points = 1e3; % # of points to use for calculating and plott...
MicrosystemsLab/PiezoD
dbbe191cac1839507bb73977c01d56e308ee115f
reworked the randomized convergence analysis so that it iterates until it finds at least two results that match, changed the default length and width bounds, added thermomechanical noise, added actuator displacement noise
diff --git a/Docs/download.jemdoc b/Docs/download.jemdoc index 8d4c845..8a1072c 100644 --- a/Docs/download.jemdoc +++ b/Docs/download.jemdoc @@ -1,18 +1,20 @@ # jemdoc: menu{MENU}{download.html} = piezoD - download piezoD is composed of several Matlab classes. You can download official releases from here. - [./...
MicrosystemsLab/PiezoD
62ae940de1c88331482c667c7b7ff181b528dc04
started using Richter's P factor rather than Harley's
diff --git a/cantilever.m b/cantilever.m index b85c05d..9878256 100755 --- a/cantilever.m +++ b/cantilever.m @@ -1,860 +1,871 @@ % General Notes % * Usage % Create a cantilever % c = cantilever_diffusion(1e0, 1e3, 100e-6, 50e-6, 10e-6, 0.5, % 0.5, 0.5, 5, 'boron', 20*60, 1000) % % ...
MicrosystemsLab/PiezoD
a5ced8c8d1e7dc5df41a9ef60b8f1322ae4389c6
lots of changes, including amplifier noise, creating class constants, number of piezoresistors
diff --git a/Docs/contact.jemdoc b/Docs/contact.jemdoc index cd80b34..03bdc24 100644 --- a/Docs/contact.jemdoc +++ b/Docs/contact.jemdoc @@ -1,5 +1,5 @@ # jemdoc: menu{MENU}{contact.html} = piezoD - contact -The piezoD project is currently maintained by [http://www.stanford.edu/~jcdoll Joey Doll], although the proj...
MicrosystemsLab/PiezoD
aa19291d89713c4e65f641f84667873d9af055da
Refactored the optimizer functions to take in the nonlinear constraints (e.g. omega_min_hz) as a dictionary. Added the ability to specify an exact spring constant or range of spring constants to optimize for. Also added a goal argument to the optimizer functions so that you can easily specify whether to optimize for fo...
diff --git a/Docs/download.jemdoc b/Docs/download.jemdoc index 83c193b..1198513 100644 --- a/Docs/download.jemdoc +++ b/Docs/download.jemdoc @@ -1,16 +1,17 @@ # jemdoc: menu{MENU}{download.html} = piezoD - download -piezoD is composed of several Matlab classes. Here are some recent builds: +piezoD is composed of se...
MicrosystemsLab/PiezoD
36d97291f4146e9ca9a700a535f9ab5e3405f7f1
Added jemdocs and releases
diff --git a/Docs/MENU b/Docs/MENU new file mode 100644 index 0000000..7f37fc1 --- /dev/null +++ b/Docs/MENU @@ -0,0 +1,8 @@ +piezoD + home [index.html] + download [download.html] + contributing [contributing.html] + revision history [revision.html] + contact [contact.html] +user guide + examples [examples.html]...
MicrosystemsLab/PiezoD
143469a3c246a094fee12f4704e73930fe5e2390
A number of small changes, prep for github
diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/cantilever.m b/cantilever.m index cd23cf1..c375b61 100755 --- a/cantilever.m +++ b/cantilever.m @@ -1,720 +1,728 @@ % General Notes % * Usage % Create a cantilever % c = cantilever_diffusion(1e0, 1e3, 100e-6, 50e-6...
MicrosystemsLab/PiezoD
8344d8dd65558c7e95a19c3657a0b6ff99fb5fae
fixed typos in sample_code.m so that it runs and brought cantilever_diffusion up to date with cantilever_epitaxy in terms of constraint handling
diff --git a/cantilever.m b/cantilever.m index c387006..cd23cf1 100755 --- a/cantilever.m +++ b/cantilever.m @@ -197,584 +197,524 @@ classdef cantilever % Units: m function resistor_length = resistor_length(self) resistor_length = 2*self.l_pr(); end % Calculate sheet r...
MicrosystemsLab/PiezoD
8940c6f753934c26938fc902430909c089a60546
Made a large number of changes, will try to reduce the number of changes in future commits:
diff --git a/cantilever.m b/cantilever.m index bdaa490..c387006 100755 --- a/cantilever.m +++ b/cantilever.m @@ -1,773 +1,780 @@ % General Notes % * Usage % Create a cantilever % c = cantilever_diffusion(1e0, 1e3, 100e-6, 50e-6, 10e-6, 0.5, % 0.5, 0.5, 5, 'boron', 20*60, 1000) % % ...
seagods/SphereTree
7529c54ebbda847fa4923ebbd384eb4e837599e4
want to give IcoSPhere MSwin capability
diff --git a/IcoSphere/IcoSphere.cpp~ b/IcoSphere/IcoSphere.cpp~ deleted file mode 100644 index a7dcbe8..0000000 --- a/IcoSphere/IcoSphere.cpp~ +++ /dev/null @@ -1,1058 +0,0 @@ -#include "Sphere.h" -#include <fstream> - -// We shall be using OpenGL's Quadric function -// GLU_FILL means that it won't be wire frame -//...
seagods/SphereTree
e156c3d7c2df74f5784ebf5483cec59375a9d5c8
modified: README # minor addition about Camera.h
diff --git a/README b/README index a3c83e8..e156e07 100644 --- a/README +++ b/README @@ -1,6 +1,9 @@ I just thought I would like to share these spherical quadtree data structures. They are based on a paper by Goodchild and Shirena, and the basis for them can be found in the Spheres documentation directory here....
trebonian/visual6502
d8ecc129b34e0eaf320e0400fcf33329475bdb1e
fixup link to visual6502 wiki
diff --git a/expert.html b/expert.html index 2104dd5..3b93fec 100644 --- a/expert.html +++ b/expert.html @@ -1,152 +1,152 @@ <!DOCTYPE html> <head> <title>Visual 6502 in JavaScript</title> <style type="text/css">@import "expert.css";</style> <script src="segdefs.js"></script> <script src="transdefs.js"></script...
trebonian/visual6502
d14ade8be86a06fa9ddc8f654e279d9dfa6439f6
fixup link to visual6502 wiki
diff --git a/index.html b/index.html index 7910367..fa014b8 100644 --- a/index.html +++ b/index.html @@ -1,120 +1,120 @@ <!DOCTYPE html> <head> <title>Visual 6502 in JavaScript</title> <!-- by default, index.html will run in kiosk mode --> <style type="text/css">@import "kiosk.css";</style> <script src="segde...
trebonian/visual6502
bc5da26ea29824ebb47b326d1accaeb014b015cc
fixup easy6502 link
diff --git a/index.html b/index.html index 1302a5f..7910367 100644 --- a/index.html +++ b/index.html @@ -1,120 +1,120 @@ <!DOCTYPE html> <head> <title>Visual 6502 in JavaScript</title> <!-- by default, index.html will run in kiosk mode --> <style type="text/css">@import "kiosk.css";</style> <script src="segde...
trebonian/visual6502
15911b02b44ae6cf12dbfe1b64456701bfc29fe5
fixup easy6502 link
diff --git a/expert.html b/expert.html index 7a0d79c..2104dd5 100644 --- a/expert.html +++ b/expert.html @@ -1,152 +1,152 @@ <!DOCTYPE html> <head> <title>Visual 6502 in JavaScript</title> <style type="text/css">@import "expert.css";</style> <script src="segdefs.js"></script> <script src="transdefs.js"></script...
trebonian/visual6502
809713732394f9dd723e3f48d4f5eeef0da5eb4d
Added zoom using the mouse wheel
diff --git a/expertWires.js b/expertWires.js index ecf0dbe..fcbf71d 100644 --- a/expertWires.js +++ b/expertWires.js @@ -1,636 +1,646 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman, Ed Spittles Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associat...
trebonian/visual6502
5b86a57c2c97dfc32751d336a9db46033d5813ee
fixup sticky mouse
diff --git a/expertWires.js b/expertWires.js index 6b8ef80..ecf0dbe 100644 --- a/expertWires.js +++ b/expertWires.js @@ -92,544 +92,545 @@ function setup_part2(){ setTimeout(setup_part3, 0); } function setup_part3(){ if(chipLayoutIsVisible){ // if user requests no chip layout, we can skip all canvas operatio...
trebonian/visual6502
296cd01f8409f7b1aab588cf58256b4e17003c32
All: fix zoomToBox to scale selection to fill 80% of the window
diff --git a/wires.js b/wires.js index 8db858f..4aa6d5d 100644 --- a/wires.js +++ b/wires.js @@ -1,280 +1,294 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software...
trebonian/visual6502
8e799d6922a05995a90c45406eb3f94e98062fba
All: fix zoomToBox to make use of grChipOffsetX/Y (tested on all chips)
diff --git a/wires.js b/wires.js index ce0065b..8db858f 100644 --- a/wires.js +++ b/wires.js @@ -1,280 +1,280 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software...
trebonian/visual6502
9795b463ac4d2981a09c565be557075cecf03a36
Z80: Updated nodenames.js to include warning about manual editing
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index 42108bd..5b9e535 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,512 +1,521 @@ +// *********************************************************** +// * This file is automatically generated by Z80Simulator. * +// * Please do not manuall...
trebonian/visual6502
bf63c33552bfc6f3dcf0149a06ba7a6b2661aec6
All: subtract grChipOffsetX/Y from coordiates given to user so the match the PNGs
diff --git a/expertWires.js b/expertWires.js index a82c9c4..6b8ef80 100644 --- a/expertWires.js +++ b/expertWires.js @@ -1,635 +1,635 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman, Ed Spittles Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associat...
trebonian/visual6502
9760663cc130507029650184f93b507bac51ef97
Z80: avoid the need to invert the register values in Javascript
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index f304a4c..42108bd 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,521 +1,521 @@ var nodenames ={ // Pads vss: 1, vcc: 2, clk: 3, ab0: 5, ab1: 6, ab2: 7, ab3: 8, ab4: 9, ab5: 10, ab6: 11, ab7: 12, ab8: 13, ab9: 14, ab10:...
trebonian/visual6502
3ae93282ba7a052f9a8a4747382a4241af7ef498
Z80: switch to machine generates nodenames.js (please don't edit\!)
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index 4a80e10..f304a4c 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,576 +1,521 @@ var nodenames ={ - - dp_dl: 82, - dl_dp: 165, - - load_ir: 1354, - - dlatch0: 123, - dlatch1: 195, - dlatch2: 414, - dlatch3: 930, - ...
trebonian/visual6502
ab53a12b2ef107658c458906c4bcbc2bab83f825
Z80: added pla signals to nodenames.js
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index e5fe2aa..4a80e10 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,442 +1,576 @@ var nodenames ={ dp_dl: 82, dl_dp: 165, load_ir: 1354, dlatch0: 123, dlatch1: 195, dlatch2: 414, dlatch3: 930, ...
trebonian/visual6502
a92f443ac15034c76ba7ca1182fea2e11e34def7
Z80: fix stepBack(), drive IntAck value of 0xe9, add lots more internal busses (with Ed)
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index f41cbd8..e5fe2aa 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,290 +1,442 @@ var nodenames ={ + + dp_dl: 82, + dl_dp: 165, + + load_ir: 1354, + + dlatch0: 123, + dlatch1: 195, + dlatch2: 414, + dlatch3: 930, + ...
trebonian/visual6502
86e6e116d71fb06c0baccc7ee410e5fb2571a21b
All: Fix a hard-coded nodes array length in stateString()
diff --git a/chipsim.js b/chipsim.js index 9790b2f..3eb83bb 100644 --- a/chipsim.js +++ b/chipsim.js @@ -1,204 +1,204 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "...
trebonian/visual6502
f3605575726a6936959bc8b730f41d039ca51cba
Z80: override chipsim getNodeValue() to better model charge sharing
diff --git a/chip-z80/support.js b/chip-z80/support.js index 14c9869..9e9d7d8 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,538 +1,569 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grChipOffsetX=150; grChipOff...
trebonian/visual6502
5005774b1b9a3ad8066e077829db5aeac9ca52b3
Z80: updated handleBusRead() to leave the databus at 0xFF between reads
diff --git a/chip-z80/support.js b/chip-z80/support.js index f8859dd..14c9869 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,640 +1,638 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grChipOffsetX=150; grChipOff...
trebonian/visual6502
b0c40b9e7b50a2a22ed9729ad3ef23e80361fa08
add URL control of some Z80 inputs
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index 7981949..f41cbd8 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,288 +1,290 @@ var nodenames ={ vss: 1, vcc: 2, clk: 3, ab0: 5, ab1: 6, ab2: 7, ab3: 8, ab4: 9, ab5: 10, ab6: 11, ab7: 12, ab8: 13, ab9: 14, ab10: 15, ab1...
trebonian/visual6502
6fcb3077eb5d2d91f30b0152fc48a208077cd816
Z80: In INTACK cycle, force 0xFF onto the databus
diff --git a/chip-z80/support.js b/chip-z80/support.js index b5a2666..f8859dd 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,625 +1,632 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grChipOffsetX=150; grChipOff...
trebonian/visual6502
cbebb0e11d4edd36ea1a41e9019baa5242ed595d
Z80: Added additional nodenames for int/nmi
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index 2dfdbc8..7981949 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,284 +1,288 @@ var nodenames ={ vss: 1, vcc: 2, clk: 3, ab0: 5, ab1: 6, ab2: 7, ab3: 8, ab4: 9, ab5: 10, ab6: 11, ab7: 12, ab8: 13, ab9: 14, ab10: 15, ab1...
trebonian/visual6502
8327a368260c3ad1b02544f293f0f60c52f6835a
Adding expert wire toggles for SO pin
diff --git a/expertWires.js b/expertWires.js index 690411a..2672dae 100644 --- a/expertWires.js +++ b/expertWires.js @@ -1,617 +1,621 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman, Ed Spittles Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associat...
trebonian/visual6502
d9c92ebdc38be2cd56e211ea53b3681aeba4159b
Z80: corrected typo in flag name
diff --git a/chip-z80/support.js b/chip-z80/support.js index 88d5491..b5a2666 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,932 +1,932 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grChipOffsetX=150; grChipOff...
trebonian/visual6502
651a1753b7c2137b55e289cfe454274cb1935eb9
Z80: update test program
diff --git a/chip-z80/testprogram.js b/chip-z80/testprogram.js index 2afb726..20bee61 100644 --- a/chip-z80/testprogram.js +++ b/chip-z80/testprogram.js @@ -1,70 +1,73 @@ // This file testprogram.js can be substituted by one of several tests testprogramAddress=0x0000; // we want to auto-clear the console if any ou...
trebonian/visual6502
f5cada53f793757c9081c07650dbb80a323cdeee
Z80: Updated transdefs.js with a version that replaces trap transistor with a hard short it's drain to ground (just connecting trap gate to VCC was not sufficient)
diff --git a/chip-z80/transdefs.js b/chip-z80/transdefs.js index 92d06df..22b0eab 100755 --- a/chip-z80/transdefs.js +++ b/chip-z80/transdefs.js @@ -1,517 +1,513 @@ var transdefs = [ -['t251',2,1,2877,[4216,4221,4058,4085],[1,1,1,1,135],false,], -['t348',2,1,2923,[1051,1082,3889,3894],[1,1,1,1,155],false,], -['t435',2...
trebonian/visual6502
7d579fa4aa4a434a6f305874cd6ed0db1a65a623
Z80: whitespace only
diff --git a/chip-z80/support.js b/chip-z80/support.js index 398cf76..88d5491 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -58,2440 +58,2440 @@ function halfStep(){ function goUntilSyncOrWrite(){ halfStep(); cycle++; while( !isNodeHigh(nodenames['clk']) || ( isNo...
trebonian/visual6502
e33f40e60c11fb5df530c33653a8e62653972333
Z80: Corrected fetch state machine to cover all cases correctly
diff --git a/chip-z80/support.js b/chip-z80/support.js index d93f7e0..398cf76 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,2497 +1,2497 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grChipOffsetX=150; grChipO...
trebonian/visual6502
379d2d1ea12c235e9a78d86f9cd523b3804a9605
Z80: Seperate A/F and format flags individually
diff --git a/chip-z80/support.js b/chip-z80/support.js index ab81183..d93f7e0 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,1028 +1,1041 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grChipOffsetX=150; grChipO...
trebonian/visual6502
59792d75fc0bf760b6b6c12005eca8f93489954c
All: added variables for grChipOffsetX/gfChipOffsetY (previously hardcoded to 400/0)
diff --git a/chip-6800/support.js b/chip-6800/support.js index b1f860a..28f06cb 100644 --- a/chip-6800/support.js +++ b/chip-6800/support.js @@ -1,486 +1,488 @@ // chip-specific support functions // // may override function definitions made previously chipname='6800'; -grChipSize=7000; +grChipSize=6600; +grChip...
trebonian/visual6502
3de51801ea1440bb784806635e4902d7a1347d06
Z80: Updated test program to include call
diff --git a/chip-z80/testprogram.js b/chip-z80/testprogram.js index 7424c59..c146d82 100644 --- a/chip-z80/testprogram.js +++ b/chip-z80/testprogram.js @@ -1,63 +1,69 @@ // This file testprogram.js can be substituted by one of several tests testprogramAddress=0x0000; // we want to auto-clear the console if any ou...
trebonian/visual6502
2f882d7d3407b38a921c7fa1fd3c4ac39d021f97
Z80: Start with clock high
diff --git a/chip-z80/support.js b/chip-z80/support.js index 6cb85ff..8097efd 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,604 +1,604 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grCanvasSize=5000; grMaxZoom...
trebonian/visual6502
b9e235fac22df9fa7fa6d2cf0cf9e29dd70e2d39
Z80: display remapped registers (so INC D always increments D)
diff --git a/chip-z80/support.js b/chip-z80/support.js index 2623ed2..6cb85ff 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,785 +1,970 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grCanvasSize=5000; grMaxZoom...
trebonian/visual6502
0e4c3e0ab0775aae5dd05cdd182076ca83deb94f
Z80: Added disassembly
diff --git a/chip-z80/support.js b/chip-z80/support.js index a02a700..2623ed2 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,289 +1,2306 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; grCanvasSize=5000; grMaxZoo...
trebonian/visual6502
767e2492be78cce689d2b499ca4a31d398d6b138
Z80: Set grCanvasSize to 5000, so mistakes are clearer
diff --git a/chip-z80/support.js b/chip-z80/support.js index 48a2ec7..a02a700 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,289 +1,289 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; grChipSize=5000; -grCanvasSize=2500; +grCanvasS...
trebonian/visual6502
95f9d52306b3721c10782e5f1fe6b7daf193edd8
Z80: Adjusted chip/canvas size and max zoom
diff --git a/chip-z80/support.js b/chip-z80/support.js index 4c75529..48a2ec7 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,278 +1,289 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; -grChipSize=5500; +grChipSize=5000; +grCanvasSiz...
trebonian/visual6502
2ff43fafb3d2d297abc7ea1bcc49f1812e707057
Z80: Expose alterate register state and register set selection flipflops
diff --git a/chip-z80/nodenames.js b/chip-z80/nodenames.js index dbde35b..2dfdbc8 100644 --- a/chip-z80/nodenames.js +++ b/chip-z80/nodenames.js @@ -1,278 +1,284 @@ var nodenames ={ vss: 1, vcc: 2, clk: 3, ab0: 5, ab1: 6, ab2: 7, ab3: 8, ab4: 9, ab5: 10, ab6: 11, ab7: 12, ab8: 13, ab9: 14, ab10: 15, ab1...
trebonian/visual6502
8a9fe6f57e0be9d3c73730b2c83b3cb624309a86
Extended test program to test simple memory writes
diff --git a/chip-z80/support.js b/chip-z80/support.js index 2d6232c..8f44d6b 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,271 +1,271 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; // DMB: Update this grChipSize=7000; ngnd =...
trebonian/visual6502
3315f309a760fd6d8a5ae1f8bd2b8478245681ea
Added EXX to test program, as we seem to start off with alternative BC/DE/HL active
diff --git a/chip-z80/testprogram.js b/chip-z80/testprogram.js index c18043a..85814c2 100644 --- a/chip-z80/testprogram.js +++ b/chip-z80/testprogram.js @@ -1,26 +1,27 @@ // This file testprogram.js can be substituted by one of several tests testprogramAddress=0x0000; // we want to auto-clear the console if any ou...
trebonian/visual6502
85058171b21bc1ae0895862b9e83e0a3fce70f7b
Z80: Added ir and wr registers
diff --git a/chip-z80/support.js b/chip-z80/support.js index ad768de..2d6232c 100644 --- a/chip-z80/support.js +++ b/chip-z80/support.js @@ -1,258 +1,271 @@ // chip-specific support functions // // may override function definitions made previously chipname='z80'; // DMB: Update this grChipSize=7000; ngnd =...
trebonian/visual6502
0a6866f10cc6d7a83f87bea30a7419d61f46cb5a
Add two signals to DPControl fixing #50
diff --git a/expert-allinone.js b/expert-allinone.js index 7a8cdbc..99e4026 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -11961,1025 +11961,1028 @@ idl2: 1066, idl3: 464, idl4: 1306, idl5: 240, idl6: 1116, idl7: 391, sb0: 54, // datapath bus: special bus sb1: 1150, sb2: 1287, sb3: 1188, ...
trebonian/visual6502
096f6bbcf87679693effe393b097b070ce8d1391
Updating links, e-tradition is now masswerk
diff --git a/expert.html b/expert.html index bdd46a2..7a0d79c 100644 --- a/expert.html +++ b/expert.html @@ -1,152 +1,152 @@ <!DOCTYPE html> <head> <title>Visual 6502 in JavaScript</title> <style type="text/css">@import "expert.css";</style> <script src="segdefs.js"></script> <script src="transdefs.js"></script...
trebonian/visual6502
698312b98eec6af2b4bef0956aadcfc33c8a736f
Corrected and expanded the time state readout (the "TState" pseudobus).
diff --git a/expert-allinone.js b/expert-allinone.js index 9ef08d0..7a8cdbc 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -13515,1080 +13515,1085 @@ function turnTransistorOff(t){ } function addRecalcNode(nn){ if(nn==ngnd) return; if(nn==npwr) return; if(recalcHash[nn] == 1)ret...
trebonian/visual6502
7efe4fb8c774ab64dad3f230975d19ab9bb2a48b
Added comments to allTCStates() referring to the 6502_Timing_States wiki page.
diff --git a/expert-allinone.js b/expert-allinone.js index 3aa625b..9ef08d0 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -13517,1024 +13517,1026 @@ function turnTransistorOff(t){ function addRecalcNode(nn){ if(nn==ngnd) return; if(nn==npwr) return; if(recalcHash[nn] == 1)return; ...
trebonian/visual6502
ef0a714a2982588c5c1cecccad4fac1b4163e0e3
busToString() and allTCStates() changes agreed to online: TState and Phi.
diff --git a/expert-allinone.js b/expert-allinone.js index 139dda1..3aa625b 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -13517,1114 +13517,1111 @@ function turnTransistorOff(t){ function addRecalcNode(nn){ if(nn==ngnd) return; if(nn==npwr) return; if(recalcHash[nn] == 1)return; ...
trebonian/visual6502
c1409b78cb98509d2bc031cc92a395f96886cb27
busToString( 'TState' ) and busToString( 'TStateF' ) now call allTCStates().
diff --git a/expert-allinone.js b/expert-allinone.js index dc2db67..139dda1 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -13517,1100 +13517,1115 @@ function turnTransistorOff(t){ function addRecalcNode(nn){ if(nn==ngnd) return; if(nn==npwr) return; if(recalcHash[nn] == 1)return; ...
trebonian/visual6502
d39bab73024efa0ef0f06bb870877b370dedaffe
Clarified causation statement about T0 T+ time code in 6502 time codes documentation
diff --git a/6502timecodes.txt b/6502timecodes.txt index 6f27a1f..add6d70 100644 --- a/6502timecodes.txt +++ b/6502timecodes.txt @@ -1,126 +1,126 @@ 6502 Time codes. There are two things that are critical for correct instruction execution in the 6502 (indeed, for any CPU chip): the pattern of bits in the instr...
trebonian/visual6502
587fa47d8a6673af8d7a14f08aa4c33ab9b7be5a
Tamed a long line in the new 6502 time codes documentation
diff --git a/6502timecodes.txt b/6502timecodes.txt index 61f3f17..6f27a1f 100644 --- a/6502timecodes.txt +++ b/6502timecodes.txt @@ -1,125 +1,126 @@ 6502 Time codes. There are two things that are critical for correct instruction execution in the 6502 (indeed, for any CPU chip): the pattern of bits in the instr...
trebonian/visual6502
27d0eb8fb2a59f70aa74fcf4c8cc806dfef83bc9
Created plain-text documentation for the 6502 clock time codes. Added function that creates the text expression of the time codes seen in the documentation to macros.js and expert-allinone.js.
diff --git a/6502timecodes.txt b/6502timecodes.txt new file mode 100644 index 0000000..61f3f17 --- /dev/null +++ b/6502timecodes.txt @@ -0,0 +1,125 @@ +6502 Time codes. + + There are two things that are critical for correct instruction execution in +the 6502 (indeed, for any CPU chip): the pattern of bits in the ins...
trebonian/visual6502
cba0c7a6b57b1df5fe5fd77a1718e354949ed67e
Added ~BRtaken definition to the expert version to parallel nodenames.js.
diff --git a/expert-allinone.js b/expert-allinone.js index 0d4dfe7..5449bbd 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -11773,1024 +11773,1025 @@ var transdefs = [ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EV...
trebonian/visual6502
c2348c5f637e8ee706789091a0cfd5b498686681
Added missing '#' and '~' to both copies of the BRtaken node name.
diff --git a/expert-allinone.js b/expert-allinone.js index cb186ff..0d4dfe7 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -11772,1025 +11772,1025 @@ var transdefs = [ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERC...
trebonian/visual6502
8d5038882842fc9fe7efc7dade45d05d404f8868
Corrected node numbers for p6 (V bit) and p7 (N bit) of the status register.
diff --git a/expert-allinone.js b/expert-allinone.js index a3b0f55..cb186ff 100644 --- a/expert-allinone.js +++ b/expert-allinone.js @@ -11370,1248 +11370,1248 @@ var transdefs = [ ['t3122', 224, 657, 37, [7209, 7226, 3228, 3271],[43, 43, 17, 1, 709] ], ['t3123', 1719, 558, 831, [4746, 4768, 1986, 2176],[192, 192, 16...
trebonian/visual6502
1f78e25b3a402ecabcc73d070ac987ec08dd4d11
Tweak README - add 6800 sim
diff --git a/README b/README index c4496d3..80cf6b6 100644 --- a/README +++ b/README @@ -1,12 +1,12 @@ This is the JavaScript simulator from the visual5602.org project: www.visual6502.org/JSSim It includes a general purpose transistor-level simulator, layout browser, and the data from a 6502 revD chip. -Recent...
trebonian/visual6502
51d6bb216bd26e3d42c6efb4cd8d5d8860d55488
Patch allNodes() to generate list of numbers for node indexes instead of numeric strings, fix JMP indirect mnemonic
diff --git a/chipsim.js b/chipsim.js index 59f630c..9790b2f 100644 --- a/chipsim.js +++ b/chipsim.js @@ -1,196 +1,204 @@ /* Copyright (c) 2010 Brian Silverman, Barry Silverman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "...
trebonian/visual6502
3b7fbe43852f7aedae4ca5d56c6676325c390ce9
Fix typo in comment
diff --git a/nodenames.js b/nodenames.js index ab2a5a8..71b7aab 100644 --- a/nodenames.js +++ b/nodenames.js @@ -414,533 +414,533 @@ H1x1: 1042, // internal signal: drive status byte onto databus // often 130 pla outputs are mentioned - we have 131 here "op-sty/cpy-mem": 1601, // pla0 "op-...