Skip to content

Commit

Permalink
[#24] Update Z80.
Browse files Browse the repository at this point in the history
  • Loading branch information
kosarev committed Nov 7, 2021
1 parent c5f21d5 commit 6f72f45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions x11/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ check_cxx_compiler_flag("-Wno-c++98-compat-pedantic"
WNO_CXX98_COMPAT_PEDANTIC_FLAG)
check_cxx_compiler_flag("-Wno-shadow-field-in-constructor"
WNO_SHADOW_FIELD_IN_CONSTRUCTOR_FLAG)
check_cxx_compiler_flag("-Wno-shadow-field" WNO_SHADOW_FIELD)
check_cxx_compiler_flag("-Wno-padded" WNO_PADDED_FLAG)
check_cxx_compiler_flag("-Werror" WERROR_FLAG)
check_cxx_compiler_flag("-ferror-limit=1" ERROR_LIMIT_FLAG)
Expand All @@ -50,6 +51,7 @@ append_if(WNO_CXX98_COMPAT_PEDANTIC_FLAG "-Wno-c++98-compat-pedantic"
CMAKE_CXX_FLAGS)
append_if(WNO_SHADOW_FIELD_IN_CONSTRUCTOR_FLAG
"-Wno-shadow-field-in-constructor" CMAKE_CXX_FLAGS)
append_if(WNO_SHADOW_FIELD "-Wno-shadow-field" CMAKE_CXX_FLAGS)
append_if(WNO_PADDED_FLAG "-Wno-padded" CMAKE_CXX_FLAGS)
append_if(WERROR_FLAG "-Werror" CMAKE_CXX_FLAGS)
append_if(ERROR_LIMIT_FLAG "-ferror-limit=1" CMAKE_CXX_FLAGS)
Expand Down
2 changes: 1 addition & 1 deletion z80
Submodule z80 updated 53 files
+1 −0 .gitignore
+55 −22 .travis.yml
+2 −0 CMakeLists.txt
+1 −0 MANIFEST.in
+6 −4 README.md
+1 −0 examples/.gitignore
+1 −0 examples/CMakeLists.txt
+57 −0 examples/assembly_review.cpp
+6 −0 examples/assembly_review.sh
+35 −0 examples/benchmark.cpp
+6 −6 examples/exercisers.py
+2 −2 examples/input_and_output.cpp
+19 −0 examples/single_stepping.py
+17 −9 setup.py
+4 −1 tests/CMakeLists.txt
+0 −0 tests/__init__.py
+9 −0 tests/disasm/bytes-redefined.asm
+6 −0 tests/disasm/bytes-with_comments.asm
+7 −0 tests/disasm/bytes.asm
+9 −0 tests/disasm/call.asm
+5 −0 tests/disasm/comment.asm
+7 −0 tests/disasm/include_binary-no_comment.asm
+8 −0 tests/disasm/include_binary.asm
+1 −0 tests/disasm/index_regs.asm
+1 −0 tests/disasm/input.bin
+5 −0 tests/disasm/instr.asm
+13 −0 tests/disasm/overlapping_instr.asm
+4 −0 tests/disasm/relative_jump.asm
+3 −0 tests/disasm/ret-conditional.asm
+3 −0 tests/disasm/ret.asm
+1 −1 tests/dummy_state.cpp
+10 −0 tests/interrupts.cpp
+73 −0 tests/reset.cpp
+504 −288 tests/tester.cpp
+379 −50 tests/tests_i8080
+2,999 −110 tests/tests_z80
+75 −0 tests/testsuite.py
+3 −0 tests/z80sim/.gitignore
+518 −0 tests/z80sim/z80sim.py
+4 −0 travis.py
+2,672 −2,262 z80.h
+5 −2 z80/__init__.py
+674 −0 z80/_disasm.py
+154 −0 z80/_disasm_parser.py
+0 −256 z80/_disassembler.py
+10 −0 z80/_error.py
+421 −0 z80/_instr.py
+166 −58 z80/_machine.py
+9 −23 z80/_main.py
+73 −0 z80/_source.py
+82 −0 z80/_token.py
+80 −59 z80/_z80module.cpp
+111 −3 z80/machine.inc

0 comments on commit 6f72f45

Please sign in to comment.