Преглед на файлове

Minor chages and github migrate

Min преди 4 години
родител
ревизия
6b9ad2298f
променени са 2 файла, в които са добавени 7 реда и са изтрити 1 реда
  1. 2 0
      msp430emu/emulator.py
  2. 5 1
      readme.md

+ 2 - 0
msp430emu/emulator.py

@@ -263,6 +263,8 @@ class EmulatorWindow(wx.Frame):
             self.btn_key.Disable()
             self.btn_start_emu.Disable()
             self.btn_stop_emu.Disable()
+        else:
+            self.statusBar.SetStatusText("Press start to run emulation")
 
     def callback(self, event, data):
         if event == Emulator.EVENT_CONSOLE:

+ 5 - 1
readme.md

@@ -1,12 +1,16 @@
 # MSP430 Emulator with GUI
 
+A python wrapper for MSP430 emulator. Emulator itself has been taken from 
+[https://github.com/RudolfGeosits/MSP430-Emulator](https://github.com/RudolfGeosits/MSP430-Emulator)
+
+It has been modified to work without websocket or any other 3rd party libraries, enabling it to be easily compiled on any platform.
 ## Setup
 
 More detailed description for multiple platforms will be added.
 
 Install latest via pip:
 ```bash
-pip install https://gogs.infcof.com/UCL/msp430emu/archive/master.zip
+pip install https://github.com/zceemja/msp430emu/archive/master.zip
 ```
 
 ## Work Done