Metadata-Version: 2.1
Name: bin2coe
Version: 1.0.0
Summary: A tool to convert binary files to COE files
Home-page: https://github.com/anishathalye/bin2coe
Author: Anish Athalye
Author-email: me@anishathalye.com
License: MIT
Keywords: xilinx coe bram
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Python: >=3.4
Description-Content-Type: text/markdown

bin2coe
=======

bin2coe is, as its name suggests, a tool to convert binary files to [COE] files
for initializing Xilinx FPGA block RAM.

---

[![Build Status](https://travis-ci.org/anishathalye/bin2coe.svg?branch=master)](https://travis-ci.org/anishathalye/bin2coe)

Usage
-----

Basic usage looks like this:

```bash
bin2coe -i INPUT -w WIDTH -o OUTPUT
```

Additionally, you can specify depth manually (rather than having it be
inferred), specify a value to fill in empty words, and specify the radix. See
`bin2coe --help` for more information.

Installation
------------

bin2coe can be installed from [PyPI]:

```bash
pip install bin2coe
```

After running this command, the `bin2coe` binary should be available on your
`$PATH`.

Packaging
---------

1. Update version information.

2. Build the package using ``python setup.py sdist bdist_wheel``.

3. Sign and upload the package using ``twine upload -s dist/*``.

License
-------

Copyright (c) 2019 Anish Athalye. Released under the MIT License. See
[LICENSE.md][license] for details.

[COE]: https://www.xilinx.com/support/documentation/sw_manuals/xilinx11/cgn_r_coe_file_syntax.htm
[PyPI]: https://pypi.org/project/bin2coe/


