Courses:

Computation Structures >> Content Detail



Related Resources



Related Resources

This section contains files needed to complete the assignments for the course. In order to use these files, please download the JSim software provided below. Java® plug-in software is required to run the Java® files in this section.





FILEFILE DESCRIPTION

jsim.jar (JAR) 
nominal.jsim
 (JSIM)
8clocks.jsim (JSIM)
stdcell.jsim (JSIM)

Latest Release of JSim (2.0.18) and Include Files

bsim.jar (JAR)
beta.uasm (UASM)

Latest Release of BSim (1.0.12) and Include Files
tmsim.jar (JAR)Latest Release of TMSim (1.0.1)
lab5macros.uasm (UASM)File for Lab #5
lab6.uasm (UASM)File for Lab #6
lab7.uasm (UASM)File for Lab #7
lab9.uasm (UASM)File for Lab #9

kernel.uasm (UASM)
litmus.uasm (UASM)
os.uasm (UASM)
swapregs.uasm (UASM)
user.uasm (UASM)

Various Beta Programs

cache1.uasm (UASM)
cache2.uasm (UASM)

Files for Cache Experiments
jsim.el (EL)Major EMACS Mode for Editing JSim netlists








Running JSim


First, you'll need to install a Java® system. The Sun Java® Runtime Environment, Standard Edition, for Linux can be downloaded from Sun's official site. On Linux, you'll want to change your PATH environment variable so that the "java" command is on your search path. On Windows, double-clicking any of the 6.004 files will run the program (assuming you've installed the Sun Java® environment).

Once you've installed a Java® environment and downloaded the 6.004 files, you can run JSim using the following command:

java -jar jsim.jar -Xms8m -Xmx32m -reporterrors file...

You may have to specify complete pathnames for "java" and "jsim.jar" depending on your current search path and working directory. Each of the arguments is explained below.

-jar jsim.jar adds the java archive jsim.jar to the list of files Java® examines when trying to find classes. jsim.jar contains the classes used by jsim for displaying/editing netlists, running simulations and browsing the results.

If you get an error of the form "Exception in thread "main" java.lang.NoClassDefFoundError: jsim/JSim", the Java® runtime didn't find the jsim.jar file -- try giving its full pathname, e.g., C:\6.004\jsim.jar or whatever is appropriate for your installation.

-Xms8m -Xmx32m sets the minimum heap size to 8MB and the maximum heap size to 32MB. Starting JSim with a generous heap allocation avoids a lot of garbage collection overhead the first time your circuit is processed. If you run out of memory, try specifying the -no-local-names option when running JSim. This will greatly reduce the size of the node name hashtable JSim constructs when processing the netlist. The downside of using this option is that nodes can only be referred to by using their name in the (sub)circuit where they were first defined.

-reporterrors asks JSim to provide a backtrace whenever it encounters an internal error.

file... are optional arguments specifying one or more JSim netlist files.



Editing netlists


The netlist editor built into JSim is based on the JTextArea class in Swing. Many people find the editing facilities provided by this class to be underwhelming and prefer to use an external editor. jsim.el defines a new major mode for EMACS useful for editing JSim netlists. You can invoke the mode automatically when reading in a ".jsim" file by adding the following to your .emacs file:

;;; jsim support, assumes jsim.el lives in your home directory
(autoload 'jsim-mode "~/jsim" nil t)
(setq auto-mode-alist (cons '("\.jsim$" . jsim-mode) auto-mode-alist))
(add-hook 'jsim-mode-hook 'turn-on-font-lock)

 

Java® is a trademark or registered trademark of Sun Microsystems, Inc. in the United States and other countries.

 


 



 








© 2009-2020 HigherEdSpace.com, All Rights Reserved.
Higher Ed Space ® is a registered trademark of AmeriCareers LLC.