From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,be0ffa00e7ee1ac6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-28 22:49:06 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!207.115.63.138!newscon04.news.prodigy.com!newsmst01.news.prodigy.com!prodigy.com!postmaster.news.prodigy.com!newssvr12.news.prodigy.com.POSTED!not-for-mail From: James Ross Newsgroups: comp.lang.ada Subject: Re: An OS in Ada, why not RTEMS ? Message-ID: References: X-Newsreader: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 65.65.181.206 X-Complaints-To: abuse@prodigy.net X-Trace: newssvr12.news.prodigy.com 1020059310 ST000 65.65.181.206 (Mon, 29 Apr 2002 01:48:30 EDT) NNTP-Posting-Date: Mon, 29 Apr 2002 01:48:30 EDT Organization: Prodigy Internet http://www.prodigy.com X-UserInfo1: SCSYQNON_JVWS^MRN[OJNW@@YJ_ZTB\MV@BJ]Q]KEYUNDQUCCNSUAACY@L[ZX__HGFD]JBJNSFXTOOGA_VWY^_HG@FW_HUTHOH]TBPGCO\P^PLP^@[GLHUK@WLECKFVL^TYG[@RMWQXIWM[SDDYWNLG_G[_BWUCHFY_Y@AS@Q[B\APPF@DCZM_PG_VSCPQZM Date: Mon, 29 Apr 2002 05:48:30 GMT Xref: archiver1.google.com comp.lang.ada:23211 Date: 2002-04-29T05:48:30+00:00 List-Id: On Sun, 28 Apr 2002 21:29:45 -0500, sk wrote: >Do you expect this to put the character 'H' on the screen ? That was the general idea!! Upper left hand corner... You know... the old DOS text screen! By your remarks it seems I have forgotten that the attribute really comes first in each character cell. The byte order thingy bytes again! Well, at least it compiles without a problem in GNAT. The exercise is this: gcc -S Hello.adb as -o Hello.o -a=Hello.lst Hello.s We need those machine language bytes that are in the .lst file with the proper address of the _system__storage_elements__to_address subroutine along with the subroutine ml code itself in a .bin file. Not an ELF, not a PE, not a .o, not a .lst, But a raw binary file. CAN WE DO THAT? JR