معرفی شرکت ها


fengyong-1.3.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Run MIPS with python!
ویژگی مقدار
سیستم عامل -
نام فایل fengyong-1.3.0
نام fengyong
نسخه کتابخانه 1.3.0
نگهدارنده ['loopyme']
ایمیل نگهدارنده ['peter@mail.loopy.tech']
نویسنده CQU-AI
ایمیل نویسنده peter@mail.loopy.tech
آدرس صفحه اصلی https://github.com/CQU-AI/pymips
آدرس اینترنتی https://pypi.org/project/fengyong/
مجوز MIT License
MIPS-Simulator ============== |GitHub release (latest by date)| |PyPI| |Travis-CI| Introduction ------------ MIPS-Simulator runs MIPS32 programs. Unlike real simulator, which assembles the instructions into machine code and executes them, MIPS-Simulator just parse the instructions and runs them using python code. In other words, MIPS-simulator actually interprets mips instructions. .. image:: https://raw.githubusercontent.com/CQU-AI/pymips/master/example.png Note ---- - This project is in its early stage, which means some functions may not supported yet. Install ------- - With pip : ``pip3 install fengyong`` - With src : Clone or fork this project, then build it with ``python3 setup.py install`` Usage ----- Shell ~~~~~ After install, you can run a mips shell with ``mips-shell`` command. Assemble ~~~~~~~~ .. code:: python from fengyong import Assembler instructions = """ j 10000 add $s0,$a1,$t7 sw $s1,10($s2)""" machine_code = Assembler.encode(instructions) print(machine_code.bin) print(machine_code.value_base(16)) DisAssemble ~~~~~~~~~~~ .. code:: python from fengyong import DisAssembler from fengyong import RegData machine_code = RegData("0x8002710af820ae51000a") instructions = DisAssembler.decode(machine_code) print(instructions) Simulate - RUN! ~~~~~~~~~~~~~~~ .. code:: python from fengyong import Simulator # Run mips instruction in line Simulator.run_line("addi $s0, $s1, 10") # Run asm file Simulator.run_file("../test/drings.asm") Simulate - Debug ~~~~~~~~~~~~~~~~ .. code:: python from fengyong import Registers from fengyong import RegData # Set the register data Registers.reg_set("$s0",RegData(100)) # Get the register data res = Registers.reg_get("$s0") # print all the "s" registers Registers.print("s") # print all registers Registers.print() Example ~~~~~~~ - `Sample1 <https://github.com/CQU-AI/pymips/tree/master/sample/sample>`__ Contributing ------------ Read `CONTRIBUTING <https://github.com/CQU-AI/pymips/blob/master/CONTRIBUTING.md>`__ for more information. .. |GitHub release (latest by date)| image:: https://img.shields.io/github/v/release/cqu-ai/pymips .. |PyPI| image:: https://img.shields.io/pypi/v/fengyong .. |Travis-CI| image:: https://img.shields.io/travis/com/CQU-AI/pymips


نحوه نصب


نصب پکیج whl fengyong-1.3.0:

    pip install fengyong-1.3.0.whl


نصب پکیج tar.gz fengyong-1.3.0:

    pip install fengyong-1.3.0.tar.gz