Advertisement
paul_nicholls

Untitled

Mar 2nd, 2024
1,635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 1.28 KB | None | 0 0
  1. type
  2.   TVIC = record
  3.     spr0_x      : Byte;
  4.     spr0_y      : Byte;
  5.     spr1_x      : Byte;
  6.     spr1_y      : Byte;
  7.     spr2_x      : Byte;
  8.     spr2_y      : Byte;
  9.     spr3_x      : Byte;
  10.     spr3_y      : Byte;
  11.     spr4_x      : Byte;
  12.     spr4_y      : Byte;
  13.     spr5_x      : Byte;
  14.     spr5_y      : Byte;
  15.     spr6_x      : Byte;
  16.     spr6_y      : Byte;
  17.     spr7_x      : Byte;
  18.     spr7_y      : Byte;
  19.     spr_hi_x    : Byte;
  20.     cr1         : Byte;
  21.     raster      : Byte;
  22.     lp_x        : Byte;
  23.     lp_y        : Byte;
  24.     spr_ena     : Byte;
  25.     cr2         : Byte;
  26.     spr_exp_y   : Byte;
  27.     mem         : Byte;
  28.     irq         : Byte;
  29.     irq_ena     : Byte;
  30.     spr_dp      : Byte;
  31.     spr_mcolor  : Byte;
  32.     spr_exp_x   : Byte;
  33.     spr_ss_col  : Byte;
  34.     spr_sd_col  : Byte;
  35.     border      : Byte;
  36.     bg_color0   : Byte;
  37.     bg_color1   : Byte;
  38.     bg_color2   : Byte;
  39.     bg_color3   : Byte;
  40.     spr_color1  : Byte;
  41.     spr_color2  : Byte;
  42.     spr0_color  : Byte;
  43.     spr1_color  : Byte;
  44.     spr2_color  : Byte;
  45.     spr3_color  : Byte;
  46.     spr4_color  : Byte;
  47.     spr5_color  : Byte;
  48.     spr6_color  : Byte;
  49.     spr7_color  : Byte;
  50.   end;
  51.  
  52. var
  53.   vic   : TVIC absolute $d000;
  54. begin
  55.   vic.border    := white;
  56.   vic.bg_color0 := dark_grey;
  57.  
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement