Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ukma!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: <6400@thorin.cs.unc.edu> Date: 28 Jan 89 18:33:21 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.