From d522c55e6302e502d8ad80adec18a99a6048b36b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan=20Bebi=C4=87?= <36513588+bogdanbebic@users.noreply.github.com> Date: Mon, 7 Oct 2019 22:13:20 +0200 Subject: [PATCH] Added MessyLab gitignore --- community/MessyLab.gitignore | 41 ++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 community/MessyLab.gitignore diff --git a/community/MessyLab.gitignore b/community/MessyLab.gitignore new file mode 100644 index 00000000..8d46d9b0 --- /dev/null +++ b/community/MessyLab.gitignore @@ -0,0 +1,41 @@ +# gitignore template for the MessyLab IDE used to develop the picoComputer assembly language +# picoComputer is a computer architecture to aid teaching of assembly languages +# (used in classes of first year students at the University of Belgrade) +# +# The website of the IDE: +# http://messylab.com/ +# +# The documentation of the picoComputer assembly language can be found here: +# http://messylab.com/pico/ +# +# The files with the following extensions should not be ignored: +# mlp - messylab project file +# pca - picoComputer source file +# + + +# Contain information about the breakpoints +# and the watches in the source files +# (Breakpoints.xml and Watch.xml) +*.xml + +# Contains the program of the picoComputer in the form +# of encoded instructions of the language +# (.hex) +*.hex + +# XML file containing the information regarding debugging the picoComputer +# program in MessyLab - file line numbers, whether a line is executable, names, etc. +# (.bin.mldbg) +*.mldbg + +# Contains the source code shifted to the right of the file (tabulated), +# machine translated label lines and hex values of the encoded +# instructions to the left of the file. The source code appears +# next to the machine translated code +# (.txt) +*.txt + +# Contains machine translated program of the picoComputer +# (.bin) +*.bin