1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Fixed a typo in commit 2e5fbe89cd.

Changed a && to ||.
This commit is contained in:
Greg King 2020-02-21 08:12:05 -05:00
parent 857a566a2e
commit e2c6648607

View File

@ -104,7 +104,7 @@ int ValidAddrSizeForCPU (unsigned char AddrSize)
case ADDR_SIZE_FAR:
/* Supported by "none" and 65816 */
return (CPU == CPU_NONE && CPU == CPU_65816);
return (CPU == CPU_NONE || CPU == CPU_65816);
case ADDR_SIZE_LONG:
/* "none" supports all sizes */