diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8deb0ac --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: c +os: + - linux + - osx +compiler: + - clang + - gcc +script: + - cmake . -DCMAKE_BUILD_TYPE=Release + - make diff --git a/README.md b/README.md index 33c9d10..aa154ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # l65 -l65 is a 6502 assembler, operating from within Lua and written in Lua. This means assembler mnemonics become regular Lua statements anywhere in the moddle of regular Lua code. +l65 is a 6502 assembler, operating from within Lua and written in Lua. This means assembler mnemonics become regular Lua statements anywhere in the middle of Lua code. ## Building