OpenCores
URL https://opencores.org/ocsvn/zipcpu/zipcpu/trunk

Subversion Repositories zipcpu

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 97 to Rev 98
    Reverse comparison

Rev 97 → Rev 98

/zipcpu/trunk/sw/zasm/zasm.l
107,7 → 107,6
(?i:int) { yylval.u_op = OP_TRAP;return SINGLOP; }
(?i:trap) { yylval.u_op = OP_TRAP;return SINGLOP; }
(?i:jmp) { yylval.u_op = OP_JMP; return SINGLOP; }
(?i:ljmp) { yylval.u_op = OP_LJMP;return SINGLOP; }
(?i:neg) { yylval.u_op = OP_NEG; return SINGLOP; }
(?i:not) { yylval.u_op = OP_NOT; return SINGLOP; }
(?i:cmp) { yylval.u_op = OP_CMP; return DUALOP; }
129,6 → 128,7
(?i:lsl) { yylval.u_op = OP_LSL; return DUALOP; }
(?i:asr) { yylval.u_op = OP_ASR; return DUALOP; }
(?i:lsr) { yylval.u_op = OP_LSR; return DUALOP; }
(?i:ljmp) { yylval.u_op = OP_LJMP; return BAREOP; }
(?i:lod) { yylval.u_op = OP_LOD; return LOADOP; }
(?i:sto) { yylval.u_op = OP_STO; return STOROP; }
(?i:halt) { yylval.u_op = OP_HALT; return BAREOP; }

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.