From 2308387a347379eacd6f2e9af771e344a43eed45 Mon Sep 17 00:00:00 2001 From: Phillip Stevens Date: Fri, 17 Apr 2020 10:52:56 +1000 Subject: [PATCH] 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. --- portable/SDCC/Z180/port.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/portable/SDCC/Z180/port.c b/portable/SDCC/Z180/port.c index 8bd08e3f8..ccd66c907 100644 --- a/portable/SDCC/Z180/port.c +++ b/portable/SDCC/Z180/port.c @@ -39,10 +39,9 @@ /* We require the address of the pxCurrentTCB variable, but don't want to know any details of its type. */ -/* Make unitialised in BSS for RomWBW HBIOS (to ensure above 0x8000) */ + typedef void TCB_t; extern volatile TCB_t * volatile pxCurrentTCB; - /*-----------------------------------------------------------*/ /*