Skip to content

Commit

Permalink
Named the thing
Browse files Browse the repository at this point in the history
  • Loading branch information
brydon committed Apr 10, 2014
1 parent a7493ab commit fb5af84
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 57 deletions.
2 changes: 2 additions & 0 deletions assembler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
space of the Intel 8088 to assist the user in understanding the assembly
code their writing.
This project lives at https://github.com/brydon/8088-Simulator
Features
Development Environment with Syntax Highlighting
Expand Down
2 changes: 1 addition & 1 deletion assembler/commandinterpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ def RCL(self, command, i):
"""name:RCL
title:Rotate carry left
args:[reg]
description: Rotates the destionation operand left. The carry flag is\
description: Rotates the destination operand left. The carry flag is\
copied into the lowest bit, and the highest bit is copied into the Carry flag
flags:*,,,,,,,*"""
argumentType = self.testArgument(command, 1, i, [self._REG])
Expand Down
6 changes: 3 additions & 3 deletions assembler/simulatorgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@


class Simulator(object):
_PROGRAMNAME = "The Best 8088 Simulator"
_PROGRAMNAME = "Arc"
_VERSION = "0.5"
_DESCRIPTION = "A Program for Writing and Simulating\
Intel 8088 Assembly Code"
Expand Down Expand Up @@ -404,8 +404,8 @@ def updateRegisters(self):
memToDisplay = self.machine.getFromMemoryAddress(0,
288 - self.backSlashCount)

escapedMem = [self.machine.escapeSequences(self.makeCharPrintable(x)) \
for x in memToDisplay]
escapedMem = [self.machine.escapeSequences(
self.makeCharPrintable(x)) for x in memToDisplay]

self.memoryBuffer.set_text("".join(escapedMem))

Expand Down
53 changes: 0 additions & 53 deletions assembly-examples/LoopsAndPrints.s

This file was deleted.

Binary file modified doc/FinalReport.odt
Binary file not shown.
Binary file modified doc/ProgressReport.odt
Binary file not shown.

0 comments on commit fb5af84

Please sign in to comment.