Advertisement
Guest User

Untitled

a guest
Jan 31st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.37 KB | None | 0 0
  1. select
  2.         accept Invert_Row(Row, Width: Integer) do
  3.           Local_Row := Row;
  4.           Local_Width := Width;
  5.         end Invert_Row;
  6.         for I in 1..Local_Width loop
  7.           Picture_Pointer.all(Local_Row, I) := 255 - Picture_Pointer.all(Local_Row, I);
  8.         end loop;
  9.         accept Done;
  10.       or
  11.         accept Kill;
  12.         exit;
  13.       end select;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement