Changeset abd4109 in buchla-68k for misc


Ignore:
Timestamp:
07/08/2017 01:47:29 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
f4fbee9
Parents:
1127e68
Message:

Added vlib assembly prototypes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/proto.c

    r1127e68 rabd4109  
    111111}
    112112
    113 void GLCplot(void)
     113void GLCplot(unsigned x, unsigned y, unsigned val)
    114114{
    115115}
     
    139139}
    140140
    141 void objclr(void)
    142 {
    143 }
    144 
    145 void objoff(void)
    146 {
    147 }
    148 
    149 void objon(void)
     141void objclr(unsigned obj)
     142{
     143}
     144
     145void objoff(unsigned obj, unsigned line, unsigned num)
     146{
     147}
     148
     149void objon(unsigned obj, unsigned line, unsigned num)
    150150{
    151151}
     
    238238}
    239239
    240 void tsplot4(void)
     240void tsplot4(int *obase, int nw, int fg, int row, int col, char *str, int pitch)
    241241{
    242242}
     
    250250}
    251251
    252 void vbank(void)
    253 {
    254 }
    255 
    256 void vclrav(void)
    257 {
    258 }
    259 
    260 void vcputs(void)
    261 {
    262 }
    263 
    264 void vcputsv(void)
     252void vbank(unsigned b)
     253{
     254}
     255
     256void vclrav(unsigned *adr, unsigned row, unsigned col, unsigned atr, unsigned len)
     257{
     258}
     259
     260void vcputs(int *obase, int nw, int fg, int bg, int row, int col, char *str)
     261{
     262}
     263
     264void vcputsv(int *obase, int nw, int fg, int bg, int row, int col, char *str, int pitch)
    265265{
    266266}
     
    282282}
    283283
    284 void vputa(void)
    285 {
    286 }
    287 
    288 void vputc(void)
    289 {
    290 }
    291 
    292 void vputcv(void)
    293 {
    294 }
    295 
    296 void vputp(void)
    297 {
    298 }
    299 
    300 void vsetav(void)
    301 {
    302 }
    303 
    304 void vsetcv(void)
    305 {
    306 }
    307 
    308 void vsplot4(void)
    309 {
    310 }
    311 
    312 void vvputsv(void)
    313 {
    314 }
    315 
    316 void vwputp(void)
    317 {
    318 }
    319 
    320 void vwputs(void)
     284void vputa(unsigned *sbase, unsigned row, unsigned col, unsigned attrib)
     285{
     286}
     287
     288void vputc(unsigned *sbase, unsigned row, unsigned col, unsigned c, unsigned attrib)
     289{
     290}
     291
     292void vputcv(unsigned *adr, unsigned row, unsigned col, unsigned char, unsigned atr, unsigned cols)
     293{
     294}
     295
     296void vputp(struct octent *octad, int xloc, int yloc, int val)
     297{
     298}
     299
     300void vsetav(unsigned *adr, unsigned row, unsigned col, unsigned atr, unsigned len)
     301{
     302}
     303
     304void vsetcv(unsigned *adr, unsigned row, unsigned col, unsigned cfb, unsigned len)
     305{
     306}
     307
     308void vsplot4(unsigned *obase, unsigned nw, unsigned fg, unsigned row, unsigned col, char *str,
     309             unsigned pitch, unsigned ht, int cgtab[][256])
     310{
     311}
     312
     313void vvputsv(unsigned *obase, unsigned nw, unsigned fg, unsigned bg, unsigned row, unsigned col,
     314             char *str, unsigned pitch, unsigned ht, int cgtab[][256])
     315{
     316}
     317
     318void vwputp(struct octent *octad, int xloc, int yloc, int val)
     319{
     320}
     321
     322void vwputs(int *obase, int nw, int fg, int bg, int row, int col, char *str)
    321323{
    322324}
Note: See TracChangeset for help on using the changeset viewer.