Metadata-Version: 1.2
Name: hack_assemble
Version: 0.1
Summary: Assembles Hack assembly files into Hack machine language files.
Home-page: https://github.com/marcusmonteiro/coursera-nand2tetris/tree/master/projects/06/hack_assemble
Author: Marcus Vinicius Monteiro de Souza
Author-email: mvsouza007@gmail.com
License: MIT
Description: Hack Assemble
        ==============
        
        An Assembler program that translates programs written in the symbolic
        Hack assembly language into binary code that can execute on the Hack
        hardware platform built in the previous projects.
        
        Usage
        -----
        
        The assembler can be invoked via command line with the command:
        
        ``hack-assemble fileName.asm``
        
        , where the string fileName.asm is the assembler’s input, i.e. the name
        of a text file containing Hack assembly commands. The assembler creates
        an output text file named fileName.hack. Each line in the output file
        consists of sixteen 0 and 1 characters. The output file is stored in the
        same directory of the input file. The name of the input file may contain
        a file path.
        
        Reference
        ---------
        
        http://nand2tetris.org/06.php
        
Keywords: hack assembler
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Topic :: Software Development :: Assemblers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6
