Path: utzoo!attcan!uunet!lll-winken!lll-lcc!ames!xanth!mcnc!thorin!tlab1!warner From: warner@tlab1.cs.unc.edu (Byron Warner) Newsgroups: comp.sys.cbm Subject: Machine Language interfacing with Power C. Keywords: Banking. Message-ID: <6256@thorin.cs.unc.edu> Date: 19 Jan 89 19:15:46 GMT Sender: news@thorin.cs.unc.edu Distribution: na Lines: 20 I am the owner of a c128 with Power C. I would like to know a few things about using machine language with it. - How would I clear of set the carry bit from C so that I could all routines like "plot" for setting curors location? - Since the c128 is a bank switching machine can pointer indirection work to change vital memory locations. ie. writing to the screen with pointer indirection. #define SCREEN 1024 . . char *ptr = SCREEN; *ptr = 5; /* writing a letter to the screen 8/ - Also when writing ml code to work with power C beside allocating the memory and using the sys function what else is needed? Thanks in advance.