z180 - Remove HBIOS Comment.

Remove the comment on RomWBW HBIOS, regarding the location of the `pxCurrentTCB`.
```c
/* Make unitialised in BSS for RomWBW HBIOS (to ensure above 0x8000) */
```
Whilst it remains true for HBIOS that the `pxCurrentTCB` must be above `0x8000` to ensure that it is available during a yield, this is not the general case.
This commit is contained in:
Phillip Stevens 2020-04-17 10:52:56 +10:00 committed by GitHub
parent 2a4e95b357
commit 2308387a34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,10 +39,9 @@
/* We require the address of the pxCurrentTCB variable, but don't want to know /* We require the address of the pxCurrentTCB variable, but don't want to know
any details of its type. */ any details of its type. */
/* Make unitialised in BSS for RomWBW HBIOS (to ensure above 0x8000) */
typedef void TCB_t; typedef void TCB_t;
extern volatile TCB_t * volatile pxCurrentTCB; extern volatile TCB_t * volatile pxCurrentTCB;
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/
/* /*