one-operand versions of jmp, jsr

This commit is contained in:
Ken Raeburn 1995-11-20 21:08:05 +00:00
parent b19865132f
commit b6f783b773

View File

@ -191,9 +191,13 @@ static const struct alpha_opcode alpha_opcodes[] =
{ "jmp", 0x68000000, 0, "1,(2),i" }, /* 6o+5a+5b+2A+14d */
{ "jmp", 0x68000000, 0, "1,(2)" },
{ "jmp", 0x68000000, 0, "1,Bc" },
{ "jmp", 0x6be00000, 0, "(2)" },
{ "jmp", 0x6be00000, 0, "Bc" },
{ "jsr", 0x68004000, 0, "1,(2),i" },
{ "jsr", 0x68004000, 0, "1,(2)" },
{ "jsr", 0x68004000, 0, "1,Bc" }, /* macro: lda $pv,L;jsr .. */
{ "jsr", 0x6b404000, 0, "(2)" },
{ "jsr", 0x6b404000, 0, "Bc" },
{ "ret", 0x68008000, 0, "1,(2),i" },
{ "ret", 0x68008000, 0, "1,(2)" },
{ "ret", 0x6bfa8000, 0, "" }, /* macro: ret zero,(ra) */