===========================================================================
| 219 | |
| 220 | //=========================================================================== |
| 221 | bool ArgsGetImmediateValue ( Arg_t *pArg, WORD * pAddressValue_ ) |
| 222 | { |
| 223 | if (pArg && pAddressValue_) |
| 224 | { |
| 225 | if (pArg->eToken == TOKEN_HASH) |
| 226 | { |
| 227 | pArg++; |
| 228 | return ArgsGetValue( pArg, pAddressValue_ ); |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | return false; |
| 233 | } |
| 234 | |
| 235 | // Read console input, process the raw args, turning them into tokens and types. |
| 236 | //=========================================================================== |
no test coverage detected