mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Use .REFERTO instead of .REF as the command.
This commit is contained in:
parent
e9a72b2462
commit
83e7c37277
@ -1730,7 +1730,7 @@ static void DoPushSeg (void)
|
||||
|
||||
|
||||
|
||||
static void DoReferenced (void)
|
||||
static void DoReferTo (void)
|
||||
/* Mark given symbol as referenced */
|
||||
{
|
||||
SymEntry* Sym = ParseAnySymName (SYM_ALLOC_NEW);
|
||||
@ -2165,7 +2165,8 @@ static CtrlDesc CtrlCmdTab [] = {
|
||||
{ ccNone, DoPushCharmap },
|
||||
{ ccNone, DoPushCPU },
|
||||
{ ccNone, DoPushSeg },
|
||||
{ ccNone, DoReferenced }, /* .REFERENCED */
|
||||
{ ccNone, DoUnexpected }, /* .REFERENCED */
|
||||
{ ccNone, DoReferTo }, /* .REFERTO */
|
||||
{ ccNone, DoReloc },
|
||||
{ ccNone, DoRepeat },
|
||||
{ ccNone, DoRes },
|
||||
|
@ -271,6 +271,7 @@ struct DotKeyword {
|
||||
{ ".PUSHSEG", TOK_PUSHSEG },
|
||||
{ ".REF", TOK_REFERENCED },
|
||||
{ ".REFERENCED", TOK_REFERENCED },
|
||||
{ ".REFERTO", TOK_REFERTO },
|
||||
{ ".RELOC", TOK_RELOC },
|
||||
{ ".REPEAT", TOK_REPEAT },
|
||||
{ ".RES", TOK_RES },
|
||||
|
@ -241,6 +241,7 @@ typedef enum token_t {
|
||||
TOK_PUSHCPU,
|
||||
TOK_PUSHSEG,
|
||||
TOK_REFERENCED,
|
||||
TOK_REFERTO,
|
||||
TOK_RELOC,
|
||||
TOK_REPEAT,
|
||||
TOK_RES,
|
||||
|
Loading…
Reference in New Issue
Block a user