1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
|
2014-03-22 Hugo Villeneuve <hugo@hugovil.com>
emu8051 2.0.1
2014-03-16 Hugo Villeneuve <hugo@hugovil.com>
Convert manpage to UTF-8
2014-02-17 Hugo Villeneuve <hugo@hugovil.com>
Add tests for CLI version commands
2014-02-17 Hugo Villeneuve <hugo@hugovil.com>
Do not display registers at CLI version startup
This is to help testing the "dr" command, to be able to match
default register values.
2014-02-16 Hugo Villeneuve <hugo@hugovil.com>
Add proper error checking in asciihex2int functions
2014-02-15 Hugo Villeneuve <hugo@hugovil.com>
Dont exit in case of hexfile reading failure
2014-02-15 Hugo Villeneuve <hugo@hugovil.com>
Replace disam.h with opcodes{h,c}
Also rename opcode2c.pl -> opcodes2c.pl
2014-02-15 Hugo Villeneuve <hugo@hugovil.com>
Fix comment after cleanup
2014-02-15 Hugo Villeneuve <hugo@hugovil.com>
Fix splint warnings
2014-02-15 Hugo Villeneuve <hugo@hugovil.com>
Fix C99 standard types uintN_t
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Remove unused header file includes
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Fix test script to work in external build directory
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Shorten memory_ functions prefix to mem_ in memory.c
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Fix checkpatch warnings
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Move memory read functions to memory.c
Fix warnings given by checkpatch.pl
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Fix auto-generated C source files indentation
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Remove unnecessary column in opcodes.lst
Begin to cleanup Perl code
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Remove duplicate code for disassembly
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Fix checkpatch warnings
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Shorten GPLv2 licence text in header of each source file
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Add up to 4 emulator timers
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Rename DumpMem function -> memory_dump
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Add more error checking for CLI version arguments
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Cleanup help menu
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Add support for GNU readline
readline input is fed into Lex.
This adds commands history.
There is also a configure option to disable readline support.
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Rename CLI and GUI versions main source files
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Allow hex numbers to begin with 0x or $ prefix in scanner
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Allow to set all SFR registers in CLI version
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Add new value range check when writing register in CLI version
The GUI version also had this check, so the functionality has been merged.
2014-02-13 Hugo Villeneuve <hugo@hugovil.com>
Convert CLI version input parsing to Lex/Yacc
Some error checking is still missing, but all commands seem to be
working correctly.
Update CLI help menu.
2014-02-06 Hugo Villeneuve <hugo@hugovil.com>
Remove address parameter from RUN and TRACE CLI commands
Also automatically display register contents after each RUN operation.
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Add general-purpose timer to CLI
Also add command to reset it.
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Add better error checking when loading invalid hex files
Also replaced custom error message box with standard one.
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Refactor hex loading code
Merged two identical code portions that validated the checksum.
Also added better debug messages.
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Allow EM command to be specified without arguments
In this case, program will run from the current PC address until a breakpoint
is reached.
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Move macro definition to top of file
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Use log functions to display errors
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Fix error when specifying start address in CLI version
Start address was specified as "0x0000", but need to be "0000".
2014-01-26 Hugo Villeneuve <hugo@hugovil.com>
Add square root regression test
2014-01-25 Hugo Villeneuve <hugo@hugovil.com>
Return error for test files without any validation condition
2014-01-25 Hugo Villeneuve <hugo@hugovil.com>
Do not display eror message when simply pressing return in CLI version
Before was displaying message "Syntax error".
2014-01-25 Hugo Villeneuve <hugo@hugovil.com>
Add general-purpose timer to GUI
This timer is not part of the 8051 hardware. It is a free running
timer/counter added as a mean to quickly measure delays in instruction
cyles.
For now, it is implemented only in GUI version.
2014-01-23 Hugo Villeneuve <hugo@hugovil.com>
Add documentation about regression testing
2014-01-23 Hugo Villeneuve <hugo@hugovil.com>
Remove display of command line options in GUI mode
The information message was manually edited, which creates synchronization
problems now that we are using argp to manage our options.
2014-01-23 Hugo Villeneuve <hugo@hugovil.com>
Simplify options parsing code
2014-01-23 Hugo Villeneuve <hugo@hugovil.com>
emu8051 2.0.0
2014-01-23 Hugo Villeneuve <hugo@hugovil.com>
Remove dynamic update of GUI layout
The application must restarted for the changes to take effect.
Added a message for telling this to the user.
2014-01-23 Hugo Villeneuve <hugo@hugovil.com>
Improve view/hide of memory windows
Do not restart whole GUI, just update vpaned containing
the two memory scroll windows.
2014-01-22 Hugo Villeneuve <hugo@hugovil.com>
Remove deprecated view->sfr-window option
2014-01-22 Hugo Villeneuve <hugo@hugovil.com>
Fix error when toggling memory display viewing on/off
Only the first two rows were displayed. The crc_init variable
was not handled correctly.
2014-01-14 Hugo Villeneuve <hugo@hugovil.com>
Remove autogen.sh from distribution tarball
2014-01-14 Hugo Villeneuve <hugo@hugovil.com>
ChangeLog is now automatically generated from git log output
2014-01-14 Hugo Villeneuve <hugo@hugovil.com>
Fix compilation warning
2014-01-14 Hugo Villeneuve <hugo@hugovil.com>
Refactor memwin.c for internal and external memories
2014-01-13 Hugo Villeneuve <hugo@hugovil.com>
Change confusing variable name bits_per_row to bytes_per_row
2014-01-13 Hugo Villeneuve <hugo@hugovil.com>
Improve performance of GUI step operations
Use CRC to detect which memory rows have changed.
This is only to improve GUI performance when using stepping mode, as we then
only update rows which have been modified.
2014-01-13 Hugo Villeneuve <hugo@hugovil.com>
Set external memory size default to 256
2014-01-11 Hugo Villeneuve <hugo@hugovil.com>
Set program memory size default to 65536
Before was set to 8192.
To make sure to not cause problems with bigger programs, or with small
programs that are split accross large memory regions.
2014-01-11 Hugo Villeneuve <hugo@hugovil.com>
Create common function for running instructions
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix warning for ignored return value for getline()
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix [-Wsign-compare] warnings
Original warning message:
emuconsole.c:45:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Merge ADD and ADDC operations into common function
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix code indentation
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix error with ADDC instruction
The carry flag was not added to the result.
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Add tests for ADD and ADDC instructions
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix [-Wformat-security] warning
Original warning message:
emuconsole.c:316:3: warning: format not a string literal and no format arguments [-Wformat-security]
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix warnings about unused function parameters
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix [-Wmissing-field-initializers] warnings
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Fix regression with ADDC instruction
Introduced when refactoring code with psw_set_ov() function.
2014-01-03 Hugo Villeneuve <hugo@hugovil.com>
Add additional compile warning flags
Also changed way that warning flags are defined in autoconf files.
2013-12-10 Hugo Villeneuve <hugo@hugovil.com>
Move git ignore file list to build-aux
2013-12-10 Hugo Villeneuve <hugo@hugovil.com>
Remove configure cache directory after running autoreconf
2013-12-07 Hugo Villeneuve <hugo@hugovil.com>
Separate cli and gtk sources into separate directories
Also added a common directory to hold common files to both interfaces,
and compiled into a static library.
2013-12-07 Hugo Villeneuve <hugo@hugovil.com>
Remove obsolescent macro AM_PROG_CC_C_O
2013-12-06 Anthony Liu <antliu@gmail.com>
Improve interrupt trigger code readability
2013-12-05 Anthony Liu <antliu@gmail.com>
Fix bug when processing interrupts
Push current PC onto stack and take vector address from parameter.
2013-12-02 Hugo Villeneuve <hugo@hugovil.com>
Add support for as504 assembler, with output file option
Patch is available here:
http://www.hugovil.com/repository/hvlinux/patches/as504-add-output-file-option.patch
This patch is usefull because it fixes a bug when testing the distribution
in a separate build directory like when using:
make distcheck
configure.ac automatically detects if as504 supports the option.
2013-12-02 Hugo Villeneuve <hugo@hugovil.com>
Add support for as504 assembler
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix bug when using separate build directory to create symbolic link
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Replace CALL by LCALL for compatibility with AS31 and AS504 assemblers
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Remove CSEG directive for compatibility with AS31 and AS504 assemblers
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Remove currently unsupported option to set iram size
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix CPPFLAGS for each target (CLI and GTK)
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Change way tests are enabled/disabled by asem presence
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Run each test separately from single shell script
Each new test is simply a link to opcodes.sh, generatated automatically.
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Move timer functions to timers.c
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for timers mode 2
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Change test output expected string layout
Also check stack pointer value for all tests
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for timers mode 0
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix bug with timers mode 0 (8 bits with 5-bit prescaler)
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for timers mode 1
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix error with timer1 being written to timer0
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add PC check for all tests
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for MOV instruction
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for DIV instruction
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for ANL instruction
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for ORL instruction
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add framework for regression testing
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Automatic generation of test hex files
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add tests for MUL instructions
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Remove hex files
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Rename test-files directory -> tests
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add automake options -Wall and gnu std-options
Remove configure verbose output
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Remove superfluous bytes in program disassembly
Sometimes, B1 and B2 were showing old values from previous disassembly.
Now explicitly remove them for each disassembly line.
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix code indentation
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Prevent dissassembling instructions past last address
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add ignore files to gitignore
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix syntax error in comments
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Fix error with EM command in CLI mode
Address parameter was not handled correctly.
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
CLI version: Add <?> to display help menu
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Reintroduce PSW in list of displayed registers (for regression tests)
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Display SFR registers one per line in automatic run mode
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Move SFR read/write functions to new file sfr.c
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Add option to automatically run and stop CLI emulator
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Replace printf statements with log functions
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Move variable declaration before statements
2013-12-01 Hugo Villeneuve <hugo@hugovil.com>
Display filename in case of HEX file load error
2013-11-22 Hugo Villeneuve <hugo@hugovil.com>
Zero all memories when initializing program
This is especially usefull to have NOP in program memory.
2013-11-22 Hugo Villeneuve <hugo@hugovil.com>
Add grid lines to PSW window
2013-11-21 Hugo Villeneuve <hugo@hugovil.com>
Add PSW sub window
2013-11-21 Hugo Villeneuve <hugo@hugovil.com>
Use macro to set name of sub window
2013-11-21 Hugo Villeneuve <hugo@hugovil.com>
Change scope of local variable to static
2013-11-21 Hugo Villeneuve <hugo@hugovil.com>
Add option to display bool hex character
2013-11-21 Hugo Villeneuve <hugo@hugovil.com>
Add PSW generic bit write/read functions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add parity bit update each instruction cycle
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add function to read 16-bit address/offset/value from pgm memory
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Fix bug with MOV DPTR,#data16 instruction
Source variable was 8 bits instead of 16 bits.
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Remove unused destination adressing mode #data16
Even if it is required, the destination variable is only 8-bits,
so this would have been a potential bug.
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Make MUL and DIV use generic source/destination variables
To remove confusing commented code and compilation warning
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Refactor perl code to write C source code line
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Refactor perl code to write file header
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add overflow and auxiliary carry flags manipulation functions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Simplify carry bit set/clr functions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add carry bit definitions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Move PSW bit manipulation functions to psw.c
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add carry flag manipulation functions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add stack push/pop functions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add DPTR read/write functions
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Add comment about reset value of stack pointer
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Fix error with ADD instruction and AC bit
The overflow bit was written instead of the auxiliary carry bit.
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Fix bug with ANL instruction
2013-11-17 Hugo Villeneuve <hugo@hugovil.com>
Fix bug with ORL instruction
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Fix error with JMP @A,DPTR instruction
The resulting jump address is simply the sum of the values in the accumulator
and the DPTR registers, not the indirect read of that sum.
Error reported and fixed by Anthony (antliu at gmail.com).
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Fix error with RETI instruction
The stack pointer was not updated correctly.
Error reported and fixed by Anthony (antliu at gmail.com).
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add view menu option to view/hide SFR memory dump window
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add support to view/hide SFR memory dump window in config file
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Update TODO
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Refactor code to create memory windows
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Refactor log functions
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add option to specify maximum pgm memory size
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Refactor code to read/write different memory types
Dynamic memory buffers allocation depending on sizes specified with command-line
options.
Add future support for separate IRAM and SFR buffers.
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Rename macros for maximum memory sizes
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Limit default external memory size to 1024 bytes
Emulator is running very slow if external memory is at its maximum of 64K.
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Fix syntax error in comment
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Do not reset emulator on file load (no ram clear)
Reset only when loading first file at application startup.
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add Timers 0 and 1 to SFR window
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add option to specify maximum memory sizes
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add view menu option to enable/disable IRAM/XRAM windows
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add view menu option for selecting bits per row (8/16)
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add support for bits per row in config file
Also add support for viewing internal and external memory windows
in config file.
These 3 new variables are not yet connected (TODO).
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add live option to change windows layout
Restart UI when changing layout. This is working, altough the main window
temporarily disapear in doing so.
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Use fixed font for ASCII column
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Align memory data columns text on left side
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Adjust memory index column header according to number of data columns
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Harmonize windows refresh function names
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Save vpane position for memory windows
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add external memory window vpaned_mem
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Convert memwin to display internal or external memory
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Use single function to refresh all windows
Use emugtk_UpdateDisplay() to replace individual calls to these functions:
regwin_Show();
memwin_DumpD();
pgmwin_Disasm();
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Code cleanup (tree view store init)
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Increase dissassembled instructions lines from 24 to 100
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add red color for current instruction in pgmwin
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Refresh pgmwin after modifying regwin (PC)
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add offset address to memwin dump header
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Remove address parameter when dumping memwin
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Refactor code for memwin and pgmwin modify
Add common functions int2asciihex and asciihex2int
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Registers window can now be edited
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Refresh register window after any memory modification
Banked registers R0 to R7 depend on internal memory content.
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Memory window can now be edited
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Replace macro EMU8051_DEBUG with logging functions
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Replace custom command-line options processing with argp
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add debug log functions
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Replace custom help->about dialog with gtk_show_about_dialog
2013-11-05 Hugo Villeneuve <hugo@hugovil.com>
Add web site url and bug report email to AC_INIT
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Act as if reset was pressed if no hex file is specified at startup
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Replace GTK deprecated functions
gtk_signal_connect_object -> g_signal_connect
gtk_menu_bar_append -> gtk_menu_shell_append
Also simplified ShowMessage function.
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated gtk_clist (pgmwin)
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated gtk_clist (regwin)
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Add title to memory window
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Refactor memory window ASCII display code section
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Refactor memory window code section
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated gtk_clist (memwin)
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Replace autogen custom commands with autoreconf
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Rename config to build-aux
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Remove unused configure option --enable-debug
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Remove unused/commented code
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Remove superfluous function call gtk_widget_show_all() when creating menu
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Remove superfluous function WindowDestroyEvent
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Fix bug with children not resizing with main window
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Add Gtk windows diagram
Rename main_vbox -> vbox.
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Add example configuration file
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Save paned positions and main window size to config file
2013-10-09 Hugo Villeneuve <hugo@hugovil.com>
Add support for saving UI settings to config file
2013-10-01 Hugo Villeneuve <hugo@hugovil.com>
Rename fixed_frame variable to scrollwin
2013-10-01 Hugo Villeneuve <hugo@hugovil.com>
Add vpaned to separate memory dump window
2013-10-01 Hugo Villeneuve <hugo@hugovil.com>
Add hpaned to separate pgm and disassembly windows
2013-10-01 Hugo Villeneuve <hugo@hugovil.com>
Remove obsolete gtksizes.h
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Eliminate all fixed size windows
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Allow frames to expand and fill inside vbox and hbox
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Remove fixed frame containing the 3 major windows
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Replace fixed frames with scrollable windows
Done for program, register and memory dump windows.
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated gtk_widget_set_usize()
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated gtk_menu_append()
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated gtk_signal_connect()
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Increase spacing between buttons
2013-09-30 Hugo Villeneuve <hugo@hugovil.com>
Replace deprecated functions for displaying pixmap buttons
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Replace gtk_idle functions with g_idle equivalents
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Activate gtk deprecated compilation flags
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Remember previous opened directory in file selection dialog
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Use current working directory for initial file selection dialog
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Replace gtk_file_selection dialog with gtk_file_chooser
Increase minimum gtk version to 2.4.0.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Release v1.1.2
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix compiler warning (and potential bug) in auto-generated 8051 instructions
Original warning:
warning: operation on ‘cpu8051.pc’ may be undefined [-Wsequence-point]
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix compiler warning about unused variable set by getline()
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix compiler warning about unused variable set by getch()
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix error with CJNE instruction
When the comparison was true, the PC was advanced by 2 instead of 3 bytes.
Error reported and fixed by Tobias Diedrich (ranma at tdiedrich.de).
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Add test file for CJNE bug
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Remove obsolete comment about older c++ code
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix trailing whitespace
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Create two separate executables, emu8051-cli (default) and emu8051-gtk
emu8051-gtk is optional and compiled only if Gtk+ is detected.
Add optional size parameter when dumping memory.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Add display of address in case of error
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix error with SJMP instruction
Error reported and fixed by Pierre Ferrari (piferr4ri at gmail.com).
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Improve window sizing
Based on suggestions from Pierre Ferrari (piferr4ri at gmail.com).
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Remove unnecessary autoconf checks
Disable debug message when not compiled in debug mode.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Fix syntax errors in ascii to int conversion
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Conversion from iso8859-1 to utf-8
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Run checkpatch.pl on every source file
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Update NEWS and ChangeLog
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Reintroduce command line mode
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Update Free Software Foundation address
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Add licencing information to each source file
Remove some debug messages.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Upgrade to gtk+-2
Remove gtk+-1.0 support.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Add automatic regeneration of files from opcode2c.pl to src/Makefile.am
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Code simplification and cleanup
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Modify generated files for 8051 instructions
Seems to be working good.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Add options -h and -version
Merge common function LoadHexFile() to file.c.
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Change autogen.sh script and rename test_files directory
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Increase version number
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Add documentation
2013-09-08 Hugo Villeneuve <hugo@hugovil.com>
Initial import
|