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 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
|
/***************************************************************************
* Copyright (C) 2004-2005 by Daniel Clarke *
* daniel.jc@gmail.com *
* *
* 24-04-2007 *
* Modified to add pic 16f877,16f627 and 16f628 *
* by george john george@space-kerala.org *
* supported by SPACE www.space-kerala.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "instruction.h"
#include "parser.h"
#include "pic14.h"
#include <QDebug>
#include <cassert>
#include <iostream>
using namespace std;
QString pic_type;
bool LEDSegTable[][7] = {
{ 1, 1, 1, 1, 1, 1, 0 },
{ 0, 1, 1, 0, 0, 0, 0 }, // 1
{ 1, 1, 0, 1, 1, 0, 1 }, // 2
{ 1, 1, 1, 1, 0, 0, 1 }, // 3
{ 0, 1, 1, 0 ,0, 1, 1 }, // 4
{ 1, 0, 1, 1, 0, 1, 1 }, // 5
{ 1, 0, 1, 1, 1, 1, 1 }, // 6
{ 1, 1, 1, 0, 0, 0, 0 }, // 7
{ 1, 1, 1, 1, 1, 1, 1 }, // 8
{ 1, 1, 1, 0, 0, 1, 1 }, // 9
{ 1, 1, 1, 0, 1, 1, 1 }, // A
{ 0, 0, 1, 1, 1, 1, 1 }, // b
{ 1, 0, 0, 1, 1, 1, 0 }, // C
{ 0, 1, 1, 1, 1, 0, 1 }, // d
{ 1, 0, 0, 1, 1, 1, 1 }, // E
{ 1, 0, 0, 0, 1, 1, 1 } // F
};
PIC14::PIC14( Microbe * master, Type type )
{
mb = master;
m_pCode = nullptr;
m_type = type;
}
PIC14::~PIC14()
{
}
PortPin PIC14::toPortPin( const QString & portPinString )
{
QString port,holdport;
int pin = -1;
/*****************************modified *********************************************/
//inorder to support RB.3=high/1
if ( portPinString.length() == 3 )
{
port = QString("PORT%1").arg( portPinString[1].toUpper() );
pin = QString( portPinString[2] ).toInt();
}
// In form e.g. RB.3
else if ( portPinString.length() == 4 )//modification change ==3 to ==4
{
port = QString("PORT%1").arg( portPinString[1].toUpper() );
pin = QString( portPinString[3] ).toInt();//modification change 2 to 3
}
else
{
int dotpos = portPinString.indexOf(".");
if ( dotpos == -1 )
return PortPin();
port = portPinString.left(dotpos);
//modified checking is added in the case of Register also
//now INTCON.GIE is high ,and INTCON.GIE=1/high works
if(isValidRegister( port))
{
RegisterBit REG(portPinString.mid(dotpos+1));
pin=REG.bitPos();
Register Reg(REG.registerType());
holdport=Reg.name();
if(holdport!=port)
cerr << QString(" ERROR: %1 is not a Register bit\n").arg(portPinString ).toStdString();
}
else
pin = portPinString.mid(dotpos+1).toInt();
//***************************Modification ends********************************
}
PortPin portPin( port, pin );
if ( isValidPortPin( portPin ) )
return portPin;
//**************************Modification start ********************************
else if(isValidRegister(port))
return portPin;
//**************************Modification ends ********************************
else
{
cerr << QString("ERROR: %1 is not a Port/Register bit\n").arg(portPinString ).toStdString();
return PortPin();
}
}
void PIC14::mergeCode( Code * code )
{
m_pCode->merge( code );
}
uchar PIC14::gprStart() const
{
switch ( m_type )
{
case P16C84:
case P16F84:
return 0xc;
case P16F627:
case P16F628:
case P16F877:
return 0x20;
case unknown:
break;
}
qCritical() << Q_FUNC_INFO << "Unknown PIC type = " << m_type;
return 0xc;
}
PIC14::Type PIC14::toType( const QString & _text )
{
QString text = _text.toUpper().simplified().remove('P');
if ( text == "16C84" )
{
pic_type="P16C84";
return P16C84;
}
if ( text == "16F84" )
{
pic_type="P16F84";
return P16F84;
}
if ( text == "16F627" )
{
pic_type="P16F627";
return P16F627;
}
if ( text == "16F628" )
{
pic_type="P16F627";
return P16F628;
}
//modified checking of 16F877 is included
if ( text == "16F877" )
{
pic_type="P16F877";
return P16F877;
}
cerr << QString("%1 is not a known PIC identifier\n").arg(_text).toStdString();
return unknown;
}
QString PIC14::minimalTypeString() const
{
switch ( m_type )
{
case P16C84:
return "16C84";
case P16F84:
return "16F84";
case P16F627:
return "16F627";
case P16F628:
return "16F628";
//modified checking of 16F877 is included
case P16F877:
return "16F877";
case unknown:
break;
}
qCritical() << Q_FUNC_INFO << "Unknown PIC type = " << m_type;
return nullptr;;
}
void PIC14::postCompileConstruct( const QStringList &interrupts )
{
m_pCode->append( new Instr_raw("\n\tEND\n"), Code::Subroutine );
if ( interrupts.isEmpty() )
{
// If there are no ISRs then we don't need to put in any handler code.
// Instead, just insert the goto start instruction in case we need to
// jump past any lookup tabes (and if there are none, then the optimizer
// will remove the goto instruction).
m_pCode->append(new Instr_goto("_start"), Code::InterruptHandler);
m_pCode->queueLabel( "_start", Code::LookupTable );
return;
}
/*
INTCON register:
7 --- GIE EEIE T0IE INTE RBIE T0IF INTF RBIF --- 0
E: enable
F: flag
Flag bits must be cleared manually before reactivating GIE,
but we do this in each individual interrupt handler
*/
// The bizarre dance with swap is to ensure the status bits
// are preserved properly
m_pCode->append(new Instr_goto("_start"), Code::InterruptHandler);
m_pCode->append(new Instr_raw("ORG 0x4"), Code::InterruptHandler);
// When we arrive here:
// Return address on stack,
// GIE flag cleared (globally interrupts disabled)
// W or STATUS not preserved by processor.
m_pCode->append(new Instr_movwf("W_TEMP"), Code::InterruptHandler);
m_pCode->append(new Instr_swapf("STATUS",0), Code::InterruptHandler);
m_pCode->append(new Instr_movwf("STATUS_TEMP"), Code::InterruptHandler);
QStringList::ConstIterator interruptsEnd = interrupts.end();
for( QStringList::ConstIterator it = interrupts.begin(); it != interruptsEnd; ++it )
{
// Is the interrupt's flag bit set?
m_pCode->append(new Instr_btfsc("INTCON",QString::number(interruptNameToBit((*it), true))), Code::InterruptHandler);
m_pCode->append(new Instr_goto("_interrupt_" + (*it)), Code::InterruptHandler); // Yes, do its handler routine
// Otherwise fall through to the next.
}
// If there was "somehow" a suprious interrupt there isn't really
// much we can do about that (??) so just fall through and hope for the worst.
m_pCode->queueLabel( "_interrupt_end", Code::InterruptHandler );
m_pCode->append(new Instr_swapf("STATUS_TEMP",0), Code::InterruptHandler );
m_pCode->append(new Instr_movwf("STATUS"), Code::InterruptHandler );
m_pCode->append(new Instr_swapf("W_TEMP",1), Code::InterruptHandler );
m_pCode->append(new Instr_swapf("W_TEMP",0), Code::InterruptHandler );
m_pCode->append(new Instr_retfie()); // Returns and renables globally interrupts.
m_pCode->queueLabel( "_start", Code::LookupTable );
}
int PIC14::interruptNameToBit(const QString &name, bool flag)
{
// 7 --- GIE EEIE T0IE INTE RBIE T0IF INTF RBIF --- 0
if( name == "change" ) // RB
{
if(flag) return 0;
else return 3;
}
else if( name == "timer" )
{
if(flag) return 2;
else return 5;
}
else if( name == "external" )
{
if(flag) return 1;
else return 4;
}
return -1;
}
bool PIC14::isValidPort( const QString & portName ) const
{
if(pic_type =="P16F84"||pic_type =="P16C84"||pic_type =="P16F627"||pic_type =="P16F628")
return ( portName == "PORTA" || portName == "PORTB");
if(pic_type=="P16F877")
return ( portName == "PORTA" ||portName == "PORTB"||portName == "PORTC" ||portName == "PORTD"||portName == "PORTE");
return false;
}
bool PIC14::isValidPortPin( const PortPin & portPin ) const
{
if(pic_type == "P16F84" ||pic_type =="P16C84")
{
if ( portPin.port() == "PORTA" )
return (portPin.pin() >= 0) && (portPin.pin() <= 4);
if ( portPin.port() == "PORTB" )
return (portPin.pin() >= 0) && (portPin.pin() <= 7);
}
if(pic_type == "P16F627" ||pic_type =="P16F628")
{
if ( portPin.port() == "PORTA" )
return (portPin.pin() >= 0) && (portPin.pin() <= 7);
if ( portPin.port() == "PORTB" )
return (portPin.pin() >= 0) && (portPin.pin() <= 7);
}
if(pic_type=="P16F877")
{
if ( portPin.port() == "PORTA" )
return (portPin.pin() >= 0) && (portPin.pin() <= 5);
if ( portPin.port() == "PORTB" )
return (portPin.pin() >= 0) && (portPin.pin() <= 7);
if ( portPin.port() == "PORTC" )
return (portPin.pin() >= 0) && (portPin.pin() <= 7);
if ( portPin.port() == "PORTD" )
return (portPin.pin() >= 0) && (portPin.pin() <= 7);
if ( portPin.port() == "PORTE" )
return (portPin.pin() >= 0) && (portPin.pin() <= 2);
}
return false;
}
bool PIC14::isValidTris( const QString & trisName ) const
{
if(pic_type =="P16F84"||pic_type =="P16C84"||pic_type =="P16F627"||pic_type =="P16F628")
return ( trisName == "TRISA" || trisName == "TRISB");
if(pic_type=="P16F877")
return ( trisName =="TRISA"|| trisName =="TRISB"||trisName =="TRISC"||trisName == "TRISD"||trisName == "TRISE" );
return false;
}
//*****************Modified ****************************//
//New function isValiedRegister is added to check whether a register is valied or not
bool PIC14::isValidRegister( const QString & registerName)const
{
if(pic_type=="P16F84"||pic_type=="P16C84")
return ( registerName == "TMR0"
|| registerName == "PCL"
|| registerName == "STATUS"
|| registerName == "FSR"
|| registerName == "EEDATH"
|| registerName == "EEADR"
|| registerName == "PCLATH"
|| registerName == "INTCON"
|| registerName == "EECON1"
|| registerName == "EECON2"
|| registerName == "OPTION_REG");
if(pic_type=="P16F877")
return ( registerName == "TMR0"
|| registerName == "PCL"
|| registerName == "STATUS"
|| registerName == "FSR"
|| registerName == "PCLATH"
|| registerName == "INTCON"
|| registerName == "PIR1"
|| registerName == "PIR2"
|| registerName == "TMR1L"
|| registerName == "TMR1H"
|| registerName == "T1CON"
|| registerName == "TMR2"
|| registerName == "T2CON"
|| registerName == "SSPBUF"
|| registerName == "SSPCON"
|| registerName == "CCPR1L"
|| registerName == "CCPR1H"
|| registerName == "CCP1CON"
|| registerName == "RCSTA"
|| registerName == "TXREG"
|| registerName == "RCREG"
|| registerName == "CCPR2L"
|| registerName == "CCPR2H"
|| registerName == "CCP2CON"
|| registerName == "ADRESH"
|| registerName == "ADCON0" /*bank0ends*/
|| registerName == "OPTION_REG"
|| registerName == "PIE1"
|| registerName == "PIE2"
|| registerName == "PCON"
|| registerName == "SSPCON2"
|| registerName == "PR2"
|| registerName == "SSPADD"
|| registerName == "SSPSTAT"
|| registerName == "TXSTA"
|| registerName == "SPBRG"
|| registerName == "ADRESL"
|| registerName == "ADCON1" /*bank1ends*/
|| registerName == "EEDATA"
|| registerName == "EEADR"
|| registerName == "EEDATH"
|| registerName == "EEADRH" /*bank2ends*/
|| registerName == "EECON1"
|| registerName == "EECON2" /*bank3ends*/ );
if(pic_type=="P16F627"||pic_type=="P16F628")
return ( registerName == "TMR0"
|| registerName == "PCL"
|| registerName == "STATUS"
|| registerName == "FSR"
|| registerName == "PCLATH"
|| registerName == "INTCON"
|| registerName == "PIR1"
|| registerName == "TMR1L"
|| registerName == "TMR1H"
|| registerName == "T1CON"
|| registerName == "TMR2"
|| registerName == "T2CON"
|| registerName == "CCPR1L"
|| registerName == "CCPR1H"
|| registerName == "CCP1CON"
|| registerName == "RCSTA"
|| registerName == "TXREG"
|| registerName == "RCREG"
|| registerName == "CMCON"/*bank0ends*/
|| registerName == "OPTION_REG"
|| registerName == "PIE1"
|| registerName == "PCON"
|| registerName == "PR2"
|| registerName == "TXSTA"
|| registerName == "SPBRG"
|| registerName == "EEDATA"
|| registerName == "EEADR"
|| registerName == "EECON1"
|| registerName == "EECON2"
|| registerName == "VRCON"/*bank1ends*/ );
return false;
}
//****************************modifications ends********************************************
bool PIC14::isValidInterrupt( const QString & interruptName ) const
{
if(pic_type == "P16F84" ||pic_type =="P16C84"||pic_type =="P16F877"||pic_type=="P16F627"||pic_type=="P16F628")
return ( interruptName == "change" ||
interruptName == "timer" ||
interruptName == "external" );
return false;
}
void PIC14::setConditionalCode( Code * ifCode, Code * elseCode )
{
m_ifCode = ifCode;
m_elseCode = elseCode;
}
void PIC14::Sgoto(const QString &label)
{
m_pCode->append( new Instr_goto(label) );
}
void PIC14::Slabel(const QString &label)
{
// std::cout << Q_FUNC_INFO << "label="<<label<<'\n';
m_pCode->queueLabel( label, Code::Middle );
}
void PIC14::Send()
{
m_pCode->append( new Instr_sleep() );
}
void PIC14::Ssubroutine( const QString &procName, Code * subCode )
{
m_pCode->queueLabel( procName, Code::Subroutine );
m_pCode->merge( subCode, Code::Subroutine );
m_pCode->append( new Instr_return(), Code::Subroutine );
}
void PIC14::Sinterrupt( const QString &procName, Code * subCode )
{
m_pCode->queueLabel( "_interrupt_" + procName, Code::Subroutine );
// Clear the interrupt flag for this particular interrupt source
m_pCode->append( new Instr_bcf("INTCON",QString::number(interruptNameToBit(procName,true))) );
m_pCode->merge( subCode, Code::Subroutine );
m_pCode->append( new Instr_goto("_interrupt_end"), Code::Subroutine );
}
void PIC14::Scall(const QString &name)
{
m_pCode->append( new Instr_call(name) );
}
void PIC14::Ssetlh( const PortPin & portPin, bool high)
{
if(high)
m_pCode->append( new Instr_bsf( portPin.port(),QString::number(portPin.pin()) ) );
else
m_pCode->append( new Instr_bcf( portPin.port(), QString::number(portPin.pin()) ) );
}
void PIC14::rearrangeOpArguments( QString * val1, QString * val2, LocationType * val1Type, LocationType * val2Type)
{
if( *val2Type == work && *val1Type != work )
{
LocationType tempType = *val2Type;
QString tempVal = *val2;
*val2Type = *val1Type;
*val2 = *val1;
*val1Type = tempType;
*val1 = tempVal;
}
}
void PIC14::add( QString val1, QString val2, LocationType val1Type, LocationType val2Type )
{
rearrangeOpArguments( &val1, &val2, &val1Type, &val2Type );
switch(val1Type)
{
case num: m_pCode->append(new Instr_movlw( val1.toInt( nullptr, 0 ) )); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val1,0)); break;
}
switch(val2Type)
{
case num: m_pCode->append(new Instr_addlw(val2.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_addwf(val2,0)); break;
}
}
void PIC14::subtract( const QString & val1, const QString & val2, LocationType val1Type, LocationType val2Type )
{
switch(val2Type)
{
case num: m_pCode->append(new Instr_movlw( val2.toInt( nullptr, 0 ) )); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val2,0)); break;
}
switch(val1Type)
{
case num: m_pCode->append(new Instr_sublw(val1.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_subwf(val1,0)); break;
}
}
void PIC14::assignNum(const QString & val)
{
m_pCode->append(new Instr_movlw(val.toInt( nullptr, 0 )));
}
void PIC14::assignVar(const QString &val)
{
m_pCode->append(new Instr_movf(val,0));
}
void PIC14::saveToReg(const QString &dest)
{
m_pCode->append(new Instr_movwf(dest));
}
void PIC14::saveResultToVar( const QString & var )
{
m_pCode->append( new Instr_movwf( var ) );
}
void PIC14::mul(QString val1, QString val2, LocationType val1Type, LocationType val2Type)
{
multiply();
rearrangeOpArguments( &val1, &val2, &val1Type, &val2Type );
// First, set _i argument
switch(val1Type)
{
case num: m_pCode->append(new Instr_movlw(val1.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val1,0)); break;
}
m_pCode->append(new Instr_movwf("__i"));
// Then set _j argument
switch(val2Type)
{
case num: m_pCode->append(new Instr_movlw(val2.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val2,0)); break;
}
m_pCode->append(new Instr_movwf("__j"));
m_pCode->append(new Instr_call("__picfunc_multiply"));
m_pCode->append(new Instr_movf("__result",0));
}
void PIC14::multiply()
{
if ( m_pCode->instruction("__picfunc_multiply") )
return;
m_pCode->queueLabel( "__picfunc_multiply", Code::Subroutine );
m_pCode->append(new Instr_clrf("__result"), Code::Subroutine ); //result+=m_pCode->appenduction("clrf __result");
m_pCode->queueLabel( "__picfunc_multiply_loop", Code::Subroutine );
m_pCode->append(new Instr_movf("__i",0), Code::Subroutine ); //result+=m_pCode->appenduction("movf __i,0");
m_pCode->append(new Instr_btfsc("__j","0"), Code::Subroutine ); //result+=m_pCode->appenduction("btfsc __j,0");
m_pCode->append(new Instr_addwf("__result",1), Code::Subroutine ); //result+=m_pCode->appenduction("addwf __result,1");
m_pCode->append(new Instr_bcf("STATUS","C"), Code::Subroutine ); //result+=m_pCode->appenduction("bcf STATUS,C");
m_pCode->append(new Instr_rrf("__j",1), Code::Subroutine ); //result+=m_pCode->appenduction("rrf __j,1");
m_pCode->append(new Instr_bcf("STATUS","C"), Code::Subroutine ); //result+=m_pCode->appenduction("bcf STATUS,C");
m_pCode->append(new Instr_rlf("__i",1), Code::Subroutine ); //result+=m_pCode->appenduction("rlf __i,1");
m_pCode->append(new Instr_movf("__j",1), Code::Subroutine ); //result+=m_pCode->appenduction("movf __j,1");
m_pCode->append(new Instr_btfss("STATUS","Z"), Code::Subroutine ); //result+=m_pCode->appenduction("btfss STATUS,Z");
m_pCode->append(new Instr_goto("__picfunc_multiply_loop"), Code::Subroutine ); //result+=m_pCode->appenduction("goto __picfunc_multiply_loop");
m_pCode->append(new Instr_return(), Code::Subroutine ); //result+=m_pCode->appenduction("return");
}
void PIC14::div( const QString & val1, const QString & val2, LocationType val1Type, LocationType val2Type)
{
divide();
// NOO - "x / 2" is NOT the same as "2 / x"
// rearrangeOpArguments( val1, val2, val1Type, val2Type );
// First, set _i argument
switch(val1Type)
{
case num: m_pCode->append(new Instr_movlw(val1.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val1,0)); break;
}
m_pCode->append(new Instr_movwf("__i"));
// Then set _j argument
switch(val2Type)
{
case num: m_pCode->append(new Instr_movlw(val2.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val2,0)); break;
}
m_pCode->append(new Instr_movwf("__j"));
m_pCode->append(new Instr_call("__picfunc_divide"));//result+=instruction("call __picfunc_divide");
m_pCode->append(new Instr_movf("__result",0));//result+=instruction("movf __result,0");
}
void PIC14::divide()
{
m_pCode->queueLabel( "__picfunc_divide", Code::Subroutine );
m_pCode->append(new Instr_movf("__j",1), Code::Subroutine );
m_pCode->append(new Instr_btfsc("STATUS","2"), Code::Subroutine );
m_pCode->append(new Instr_return(), Code::Subroutine );
m_pCode->append(new Instr_clrf("__result"), Code::Subroutine );
m_pCode->append(new Instr_movlw(1), Code::Subroutine );
m_pCode->append(new Instr_movwf("__k"), Code::Subroutine );
m_pCode->queueLabel( "__divide_shift", Code::Subroutine );
m_pCode->append(new Instr_bcf("STATUS","C"), Code::Subroutine );
m_pCode->append(new Instr_rlf("__k",1), Code::Subroutine );
m_pCode->append(new Instr_bcf("STATUS","C"), Code::Subroutine );
m_pCode->append(new Instr_rlf("__j",1), Code::Subroutine );
m_pCode->append(new Instr_btfss("__j","7"), Code::Subroutine );
m_pCode->append(new Instr_goto("__divide_shift"), Code::Subroutine );
m_pCode->queueLabel( "__divide_loop", Code::Subroutine );
m_pCode->append(new Instr_movf("__j",0), Code::Subroutine );
m_pCode->append(new Instr_subwf("__i",1), Code::Subroutine );
m_pCode->append(new Instr_btfsc("STATUS","C"), Code::Subroutine );
m_pCode->append(new Instr_goto("__divide_count"), Code::Subroutine );
m_pCode->append(new Instr_addwf("__i",1), Code::Subroutine );
m_pCode->append(new Instr_goto("__divide_final"), Code::Subroutine );
m_pCode->queueLabel( "__divide_count", Code::Subroutine );
m_pCode->append(new Instr_movf("__k",0), Code::Subroutine );
m_pCode->append(new Instr_addwf("__result",1), Code::Subroutine );
m_pCode->queueLabel( "__divide_final", Code::Subroutine );
m_pCode->append(new Instr_bcf("STATUS","C"), Code::Subroutine );
m_pCode->append(new Instr_rrf("__j",1), Code::Subroutine );
m_pCode->append(new Instr_bcf("STATUS","C"), Code::Subroutine );
m_pCode->append(new Instr_rrf("__k",1), Code::Subroutine );
m_pCode->append(new Instr_btfss("STATUS","C"), Code::Subroutine );
m_pCode->append(new Instr_goto("__divide_loop"), Code::Subroutine );
m_pCode->append(new Instr_return(), Code::Subroutine );
}
Code * PIC14::ifCode()
{
return m_ifCode;
}
Code * PIC14::elseCode()
{
return m_elseCode;
}
void PIC14::ifInitCode( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
// NOO - "x < 2" is NOT the same as "2 < x"
// rearrangeOpArguments( val1, val2, val1Type, val2Type );
switch(val1Type)
{
case num:
m_pCode->append(new Instr_movlw(val1.toInt( nullptr, 0 )));
break;
case work:
break; // Nothing to do
case var:
m_pCode->append(new Instr_movf(val1,0));
break;
}
switch(val2Type)
{
case num:
m_pCode->append(new Instr_sublw(val2.toInt( nullptr, 0 )));
break;
case work:
qCritical() << Q_FUNC_INFO << "Cannot subtract working from working!";
break;
case var:
m_pCode->append(new Instr_subwf(val2,0));
break;
}
}
void PIC14::equal( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
ifInitCode( val1, val2, val1Type, val2Type );
const QString labelEnd = mb->uniqueLabel()+"_endif";
const QString labelFalse = mb->uniqueLabel()+"_case_false";
m_pCode->append(new Instr_btfss("STATUS","2"));
m_pCode->append(new Instr_goto(labelFalse));
mergeCode( ifCode() );
m_pCode->append(new Instr_goto(labelEnd));
m_pCode->queueLabel( labelFalse );
mergeCode( elseCode() );
m_pCode->queueLabel( labelEnd );
}
void PIC14::notEqual( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
ifInitCode( val1, val2, val1Type, val2Type );
const QString labelEnd = mb->uniqueLabel()+"_endif";
const QString labelFalse = mb->uniqueLabel()+"_case_false";
m_pCode->append(new Instr_btfsc("STATUS","2"));
m_pCode->append(new Instr_goto(labelFalse));
mergeCode( ifCode() );
m_pCode->append(new Instr_goto(labelEnd));
m_pCode->queueLabel( labelFalse );
mergeCode( elseCode() );
m_pCode->queueLabel( labelEnd );
}
void PIC14::greaterThan( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
ifInitCode( val1, val2, val1Type, val2Type );
const QString labelEnd = mb->uniqueLabel()+"_endif";
const QString labelFalse = mb->uniqueLabel()+"_case_false";
m_pCode->append(new Instr_btfsc("STATUS","0"));
m_pCode->append(new Instr_goto(labelFalse));
mergeCode( ifCode() );
m_pCode->append(new Instr_goto(labelEnd));
m_pCode->queueLabel( labelFalse );
mergeCode( elseCode() );
m_pCode->queueLabel( labelEnd );
}
void PIC14::lessThan( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
cout << Q_FUNC_INFO << endl;
ifInitCode( val1, val2, val1Type, val2Type );
const QString labelEnd = mb->uniqueLabel()+"_endif";
const QString labelFalse = mb->uniqueLabel()+"_case_false";
m_pCode->append(new Instr_btfss("STATUS","0"));
m_pCode->append(new Instr_goto(labelFalse));
m_pCode->append(new Instr_btfsc("STATUS","2"));
m_pCode->append(new Instr_goto(labelFalse));
mergeCode( ifCode() );
m_pCode->append(new Instr_goto(labelEnd));
m_pCode->queueLabel( labelFalse );
mergeCode( elseCode() );
m_pCode->queueLabel( labelEnd );
}
void PIC14::greaterOrEqual( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
ifInitCode( val1, val2, val1Type, val2Type );
const QString labelEnd = mb->uniqueLabel()+"_endif";
const QString labelTrue = mb->uniqueLabel()+"_case_true"; // Note that unlike the others, this is labelTrue, not labelFalse
m_pCode->append(new Instr_btfsc("STATUS","2"));
m_pCode->append(new Instr_goto(labelTrue));
m_pCode->append(new Instr_btfss("STATUS","0"));
m_pCode->append(new Instr_goto(labelTrue));
mergeCode( elseCode() );
m_pCode->append(new Instr_goto(labelEnd));
m_pCode->queueLabel( labelTrue );
mergeCode( ifCode() );
m_pCode->queueLabel( labelEnd );
}
void PIC14::lessOrEqual( const QString &val1, const QString &val2, LocationType val1Type, LocationType val2Type )
{
ifInitCode( val1, val2, val1Type, val2Type );
const QString labelEnd = mb->uniqueLabel()+"_endif";
const QString labelFalse = mb->uniqueLabel()+"_case_false";
m_pCode->append(new Instr_btfss("STATUS","0"));
m_pCode->append(new Instr_goto(labelFalse));
mergeCode( ifCode() );
m_pCode->append(new Instr_goto(labelEnd));
m_pCode->queueLabel( labelFalse );
mergeCode( elseCode() );
m_pCode->queueLabel( labelEnd );
}
void PIC14::Swhile( Code * whileCode, const QString &expression)
{
QString result;
QString ul = mb->uniqueLabel();
whileCode->append( new Instr_goto(ul) );
m_pCode->queueLabel( ul, Code::Middle );
// If the condition is not true, just fall through
m_parser->compileConditionalExpression( expression, whileCode, nullptr );
}
void PIC14::Srepeat( Code * repeatCode, const QString &expression)
{
QString result;
QString ul = mb->uniqueLabel();
Code * elseCode = new Code;
elseCode->append( new Instr_goto(ul) );
m_pCode->queueLabel( ul );
m_pCode->merge( repeatCode );
// If the condition is true, just fall through
m_parser->compileConditionalExpression( expression, nullptr, elseCode );
}
void PIC14::Sif( Code * ifCode, Code * elseCode, const QString &expression)
{
m_parser->compileConditionalExpression( expression, ifCode, elseCode );
}
void PIC14::Sfor( Code * forCode, Code * initCode, const QString &expression, const QString &variable, const QString &step, bool stepPositive)
{
QString ul = mb->uniqueLabel();
if ( step == "1" )
{
if (stepPositive)
forCode->append(new Instr_incf(variable,1));
else
forCode->append(new Instr_decf(variable,1));
}
else
{
forCode->append(new Instr_movlw(step.toInt( nullptr, 0 )));
if (stepPositive)
forCode->append(new Instr_addwf(variable,1));
else
forCode->append(new Instr_subwf(variable,1));
}
forCode->append(new Instr_goto(ul));
m_pCode->merge( initCode );
m_pCode->queueLabel( ul );
m_parser->compileConditionalExpression( expression, forCode, nullptr );
}
void PIC14::Spin( const PortPin & portPin, bool NOT)
{
QString lowLabel, highLabel, postLabel;
lowLabel = mb->uniqueLabel();
highLabel = mb->uniqueLabel();
postLabel = mb->uniqueLabel();
/*result += indent + "goto\t" + lowLabel;
result += indent + "movlw\t1" + "goto\t"+postLabel+;
result += lowLabel + + indent + "movlw\t0" + indent;
result += postLabel + ;*/
if(NOT)
m_pCode->append(new Instr_btfsc( portPin.port(), QString::number( portPin.pin() ) ));
//result +=instruction((QString)(NOT?"btfsc":"btfss")+"\t"+port+","+pin);
else
m_pCode->append(new Instr_btfss( portPin.port(), QString::number( portPin.pin() ) ));
m_pCode->append(new Instr_goto(lowLabel));//result += instruction("goto\t" + lowLabel);
mergeCode( ifCode() );
m_pCode->append(new Instr_goto(postLabel));//result += instruction("goto\t"+postLabel);
m_pCode->queueLabel( lowLabel );
mergeCode( elseCode() );
m_pCode->queueLabel( postLabel );
}
void PIC14::Sdelay( unsigned length_us, Code::InstructionPosition pos )
{
if ( length_us == 0 )
return;
if ( length_us > 50070524 )
{
length_us += 50267642;
int l = length_us/50070530;
length_us -= l * 50070530;
int k = length_us/196355;
m_pCode->append( new Instr_movlw( l ), pos );
m_pCode->append( new Instr_movwf( "__l" ), pos );
m_pCode->append( new Instr_movlw( k ), pos );
m_pCode->append( new Instr_movwf( "__k" ), pos );
mb->addDelayRoutineWanted( Delay_50S );
}
else if ( length_us > 196350 )
{
length_us += 197116;
int k = length_us/196355;
length_us -= k * 196355;
int j = length_us/770;
m_pCode->append( new Instr_incf( "__l", 1 ), pos );
m_pCode->append( new Instr_movlw( k ), pos );
m_pCode->append( new Instr_movwf( "__k" ), pos );
m_pCode->append( new Instr_movlw( j ), pos );
m_pCode->append( new Instr_movwf( "__j" ), pos );
mb->addDelayRoutineWanted( Delay_200mS );
}
else if ( length_us > 766 )
{
length_us += 765;
int j = length_us/770;
length_us -= j * 770;
int i = length_us/3;
m_pCode->append( new Instr_incf( "__l", 1 ), pos );
m_pCode->append( new Instr_incf( "__k", 1 ), pos );
m_pCode->append( new Instr_movlw( j ), pos );
m_pCode->append( new Instr_movwf( "__j" ), pos );
m_pCode->append( new Instr_movlw( i ), pos );
m_pCode->append( new Instr_movwf( "__i" ), pos );
mb->addDelayRoutineWanted( Delay_768uS );
}
else
{
length_us += -1;
int i = length_us/3;
m_pCode->append( new Instr_incf( "__l", 1 ), pos );
m_pCode->append( new Instr_incf( "__k", 1 ), pos );
m_pCode->append( new Instr_incf( "__j", 1 ), pos );
m_pCode->append( new Instr_movlw( i ), pos );
m_pCode->append( new Instr_movwf( "__i" ), pos );
mb->addDelayRoutineWanted( Delay_3uS );
}
m_pCode->append( new Instr_call( "__delay_subroutine"), pos );
}
void PIC14::addCommonFunctions( DelaySubroutine delay )
{
if ( delay != Delay_None )
{
QString subName = "__delay_subroutine";
m_pCode->queueLabel( subName, Code::Subroutine );
m_pCode->append( new Instr_decfsz( "__i", 1 ), Code::Subroutine );
m_pCode->append( new Instr_goto( subName ), Code::Subroutine );
if ( delay > Delay_3uS )
{
m_pCode->append( new Instr_decfsz( "__j", 1 ), Code::Subroutine );
m_pCode->append( new Instr_goto( subName ), Code::Subroutine );
}
if ( delay > Delay_768uS )
{
m_pCode->append( new Instr_decfsz( "__k", 1 ), Code::Subroutine );
m_pCode->append( new Instr_goto( subName ), Code::Subroutine );
}
if ( delay > Delay_200mS )
{
m_pCode->append( new Instr_decfsz( "__l", 1 ), Code::Subroutine );
m_pCode->append( new Instr_goto( subName ), Code::Subroutine );
}
m_pCode->append( new Instr_return(), Code::Subroutine );
}
}
void PIC14::SsevenSegment( const Variable & pinMap )
{
assert( pinMap.type() == Variable::sevenSegmentType );
assert( pinMap.portPinList().size() == 7 );
QString subName = QString("__output_seven_segment_%1").arg( pinMap.name() );
m_pCode->append( new Instr_call( subName ) );
if ( m_pCode->instruction(subName) )
return;
// Build up what are going to write to each port from the pin map
struct SSPortOutput
{
bool used; // Wheter we use this port at all
bool use[8]; // Whether or not we use each pin.
bool out[16][8]; // The bit to write to each pin for each value.
uchar useMask; // The bits of use[8] - this is generated later from use[8]
};
unsigned numPorts = 2;
SSPortOutput portOutput[ 2 ]; // numPorts
memset( portOutput, 0, numPorts * sizeof(SSPortOutput) );
for ( unsigned i = 0; i < 7; ++i )
{
PortPin portPin = pinMap.portPinList()[i];
unsigned port = unsigned( portPin.portPosition() );
unsigned pin = unsigned( portPin.pin() );
portOutput[ port ].used = true;
portOutput[ port ].use[ pin ] = true;
for ( unsigned num = 0; num < 16; ++num )
{
portOutput[ port ].out[ num ][ pin ] = LEDSegTable[num][ i ];
}
}
// See if we've used more than one port
unsigned portsUsed = 0;
for ( unsigned port = 0; port < numPorts; ++port )
{
if ( portOutput[port].used )
portsUsed++;
}
// Generate the useMasks
for ( unsigned port = 0; port < numPorts; ++port )
{
portOutput[port].useMask = 0;
for ( unsigned pin = 0; pin < 8; ++pin )
portOutput[port].useMask |= portOutput[port].use[pin] ? (1 << pin) : 0;
}
//BEGIN Generate [subName] Subroutine
m_pCode->queueLabel( subName, Code::Subroutine );
// if ( portsUsed > 1 )
{
m_pCode->append( new Instr_movwf("__i"), Code::Subroutine );
}
// bool overwrittenW = false;
bool overwrittenW = true;
for ( unsigned port = 0; port < numPorts; ++port )
{
if ( !portOutput[port].used )
continue;
QString portName = QString("PORT%1").arg( char('A'+port) );
// Save the current value of the port pins that we should not be writing to
m_pCode->append( new Instr_movf( portName, 0 ), Code::Subroutine );
m_pCode->append( new Instr_andlw( ~portOutput[port].useMask ), Code::Subroutine );
m_pCode->append( new Instr_movwf( "__j" ), Code::Subroutine );
if ( overwrittenW )
m_pCode->append( new Instr_movf("__i",0), Code::Subroutine );
m_pCode->append( new Instr_call( subName + QString("_lookup_%1").arg(port) ), Code::Subroutine );
overwrittenW = true;
// Restore the state of the pins which aren't used
m_pCode->append( new Instr_iorwf( "__j", 0 ), Code::Subroutine );
// And write the result to the port
m_pCode->append( new Instr_movwf( portName ), Code::Subroutine );
}
m_pCode->append( new Instr_return(), Code::Subroutine );
//END Generate [subName] Subroutine
// For each port, generate code for looking up the value for writing to it
for ( unsigned port = 0; port < numPorts; ++port )
{
if ( !portOutput[port].used )
continue;
m_pCode->queueLabel( subName + QString("_lookup_%1").arg(port), Code::LookupTable );
m_pCode->append( new Instr_andlw(15), Code::LookupTable );
// Generate the lookup table
m_pCode->append( new Instr_addwf( "pcl", 1 ), Code::LookupTable );
for ( unsigned num = 0; num < 16; ++num )
{
unsigned literal = 0;
for ( unsigned bit = 0; bit < 8; ++bit )
literal += ( portOutput[port].out[num][bit] ? 1 : 0 ) << bit;
m_pCode->append( new Instr_retlw( literal ), Code::LookupTable );
}
}
}
void PIC14::Skeypad( const Variable & pinMap )
{
// pinMap = 4 rows, n columns
assert( pinMap.type() == Variable::keypadType );
assert( pinMap.portPinList().size() >= 7 ); // 4 rows, at least 3 columns
QString subName = QString("__wait_read_keypad_%1").arg( pinMap.name() );
QString waitName = QString("__wait_keypad_%1").arg( pinMap.name() );
QString readName = QString("__read_keypad_%1").arg( pinMap.name() );
m_pCode->append( new Instr_call( subName ) );
if ( m_pCode->instruction( subName ) )
return;
//BEGIN Wait until read subroutine
m_pCode->queueLabel( subName, Code::Subroutine );
// Read current key (if any) from keypad and save to temporary variable
m_pCode->append( new Instr_call( readName ), Code::Subroutine );
m_pCode->append( new Instr_movwf( "__m" ), Code::Subroutine );
// Test if any key was pressed; if not, then start again
// std::cout << "mb->alias(\"Keypad_None\")="<<mb->alias("Keypad_None") << std::endl;
m_pCode->append( new Instr_sublw( mb->alias("Keypad_None").toInt( nullptr, 0 ) ), Code::Subroutine );
m_pCode->append( new Instr_btfsc( "STATUS","Z" ), Code::Subroutine );
m_pCode->append( new Instr_goto( subName ), Code::Subroutine );
m_pCode->append( new Instr_goto( waitName ), Code::Subroutine );
//END Wait until read subroutine
//BEGIN Wait until released subroutine
m_pCode->queueLabel( waitName, Code::Subroutine );
Sdelay( 10000, Code::Subroutine ); // 10 milliseconds for debouncing
// Key was pressed; now we wait until the key is released again
m_pCode->append( new Instr_call( readName ), Code::Subroutine );
m_pCode->append( new Instr_sublw( mb->alias("Keypad_None").toInt( nullptr, 0 ) ), Code::Subroutine );
m_pCode->append( new Instr_btfss( "STATUS","Z" ), Code::Subroutine );
m_pCode->append( new Instr_goto( waitName ), Code::Subroutine );
m_pCode->append( new Instr_movf( "__m", 0 ), Code::Subroutine );
m_pCode->append( new Instr_return(), Code::Subroutine );
//END Wait until released subroutine
if ( m_pCode->instruction( readName ) )
return;
//BEGIN Read current value of keypad subroutine
m_pCode->queueLabel( readName, Code::Subroutine );
// Make the four row lines low
for ( unsigned row = 0; row < 4; ++ row )
{
PortPin rowPin = pinMap.portPinList()[row];
m_pCode->append( new Instr_bcf( rowPin.port(), QString::number( rowPin.pin() ) ), Code::Subroutine );
}
// Test each row in turn
for ( unsigned row = 0; row < 4; ++ row )
{
// Make the high low
PortPin rowPin = pinMap.portPinList()[row];
m_pCode->append( new Instr_bsf( rowPin.port(), QString::number( rowPin.pin() ) ), Code::Subroutine );
for ( unsigned col = 0; col < 3; ++ col )
{
PortPin colPin = pinMap.portPinList()[4+col];
m_pCode->append( new Instr_btfsc( colPin.port(), QString::number( colPin.pin() ) ), Code::Subroutine );
m_pCode->append( new Instr_retlw( mb->alias( QString("Keypad_%1_%2").arg(row+1).arg(col+1) ).toInt( nullptr, 0 ) ), Code::Subroutine );
}
// Make the low again
m_pCode->append( new Instr_bcf( rowPin.port(), QString::number( rowPin.pin() ) ), Code::Subroutine );
}
// No key was pressed
m_pCode->append( new Instr_retlw( mb->alias("Keypad_None").toInt( nullptr, 0 ) ), Code::Subroutine );
//END Read current value of keypad subroutine
}
/*****************************commented for modification *******************************
void PIC14::bitwise( Expression::Operation op, const QString &r_val1, const QString &val2, bool val1IsNum, bool val2IsNum )
{
QString val1 = r_val1;
// There is no instruction for notting a literal,
// so instead I am going to XOR with 0xFF
if( op == Expression::bwnot ) val1 = "0xFF";
if( val1IsNum ) m_pCode->append(new Instr_movlw(val1.toInt( 0, 0 )));// result += instruction("movlw\t"+val1);
else m_pCode->append(new Instr_movf(val1,0));//result += instruction("movf\t"+val1+",0");
QString opString;
if( val2IsNum )
{
switch(op)
{
case Expression::bwand: m_pCode->append(new Instr_andlw(val2.toInt( 0, 0 ))); break;
case Expression::bwor: m_pCode->append(new Instr_iorlw(val2.toInt( 0, 0 ))); break;
case Expression::bwxor: m_pCode->append(new Instr_xorlw(val2.toInt( 0, 0 ))); break;
case Expression::bwnot: m_pCode->append(new Instr_xorlw(val2.toInt( 0, 0 ))); break;
default: break;
}
}
else
{
switch(op)
{
case Expression::bwand: m_pCode->append(new Instr_andwf(val2,0)); break;
case Expression::bwor: m_pCode->append(new Instr_iorwf(val2,0)); break;
case Expression::bwxor: m_pCode->append(new Instr_xorwf(val2,0)); break;
case Expression::bwnot: m_pCode->append(new Instr_xorwf(val2,0)); break;
default: break;
}
}
}*/
///comment end and the new function is given bellow -- new code is working well
// TODO - One error with OR operation if A OR 255 result in segebentation fault
//*****************modified to make the bit operation works***************************/
void PIC14::bitwise( Expression::Operation op,const QString & r_val1, const QString & val2, LocationType val1Type, LocationType val2Type)
{
QString val1 = r_val1;
if( op == Expression::bwnot ) val1 = "0xFF";
switch(val1Type)
{
case num: m_pCode->append(new Instr_movlw(val1.toInt( nullptr, 0 ))); break;
case work: break;
case var: m_pCode->append(new Instr_movf(val1,0)); break;
}
switch(val2Type)
{
case num:
{
switch(op)
{
case Expression::bwand: m_pCode->append(new Instr_andlw(val2.toInt( nullptr, 0 ))); break;
case Expression::bwor: m_pCode->append(new Instr_iorlw(val2.toInt( nullptr, 0 ))); break;
case Expression::bwxor: m_pCode->append(new Instr_xorlw(val2.toInt( nullptr, 0 ))); break;
case Expression::bwnot: m_pCode->append(new Instr_xorlw(val2.toInt( nullptr, 0 ))); break;
default: break;
}
}
case work: break;
case var:
{
switch(op)
{
case Expression::bwand: m_pCode->append(new Instr_andwf(val2,0)); break;
case Expression::bwor: m_pCode->append(new Instr_iorwf(val2,0)); break;
case Expression::bwxor: m_pCode->append(new Instr_xorwf(val2,0)); break;
case Expression::bwnot: m_pCode->append(new Instr_xorwf(val2,0)); break;
default: break;
}
}
}
}//***************************************modification ends*****************************
void PIC14::SincVar( const QString &var )
{
m_pCode->append(new Instr_incf(var,1) );
}
void PIC14::SdecVar( const QString &var )
{
m_pCode->append(new Instr_decf(var,1) );
}
void PIC14::SrotlVar( const QString &var )
{
m_pCode->append(new Instr_rlf(var,1));
}
void PIC14::SrotrVar( const QString &var )
{
m_pCode->append(new Instr_rrf(var,1));
}
void PIC14::Stristate(const QString &port)
{
//modification pic type is checked here
m_pCode->append( new Instr_bsf("STATUS","5") );//commented
if(pic_type== "P16C84" || pic_type =="P16F84"||pic_type =="P16F627")
{
if( port == "trisa" || port == "TRISA" )
saveResultToVar( "TRISA" );
else saveResultToVar( "TRISB" );
}
if(pic_type =="P16F877")
{
if( port == "trisa" || port == "TRISA" )
saveResultToVar( "TRISA" );
else if( port == "trisb" || port == "TRISB" )
saveResultToVar( "TRISB" );
else if( port == "trisc" || port == "TRISC" )
saveResultToVar( "TRISC" );
else if( port == "trisd" || port == "TRISD" )
saveResultToVar( "TRISD" );
else saveResultToVar( "TRISE" );
}
m_pCode->append( new Instr_bcf(Register("STATUS"),"5") );//commented
}
void PIC14::Sasm(const QString &raw)
{
m_pCode->append(new Instr_asm(raw));
}
//BEGIN class PortPin
PortPin::PortPin( const QString & port, int pin )
{
m_port = port.toUpper();
m_pin = pin;
}
PortPin::PortPin()
{
m_port = ' ';
m_pin = -1;
}
int PortPin::portPosition() const
{
if ( m_port.isEmpty() )
return 0;
return uchar( m_port[ m_port.length() - 1 ].toLatin1() ) - 'A';
}
//END class PortPin
|