1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <meta http-equiv="Content-Style-Type" content="text/css" /> 6 <link rel="stylesheet" href="../css/manpage.css" type="text/css" /> 7 <link rel="stylesheet" href="../css/timetable.css" type="text/css" /> 8 <title>flr - Floor</title> 9 </head> 10 <body> 11 <h1>flr - Floor</h1> 12 13 <h2>Calling Format</h2> 14 <div class="section"> 15 <pre class="definition"> 16flr dest, src 17</pre> 18 </div> 19 20 <h2>Operands</h2> 21 <div class="section"> 22 <table class="arguments"> 23 <thead> 24 <tr> 25 <th>Name</th> 26 <td>Registers</td> 27 </tr> 28 </thead> 29 <tr> 30 <th>dest</th> 31 <td>An output register or temporary register.</td> 32 </tr> 33 <tr> 34 <th>src</th> 35 <td>A temporary register, input register, or floating-point constant register.</td> 36 </tr> 37 </table> 38 </div> 39 40 <h2>Overview</h2> 41 <div class="section"> 42 <p>Finds the largest integer not greater than <SPAN class="argument">src</SPAN> and stores it in <SPAN class="argument">dest</SPAN>.</p> 43 </div> 44 45 <h2>Operation</h2> 46 <div class="section"> 47<pre class="definition"> 48dest.x = floor ( src.x ) 49dest.y = floor ( src.y ) 50dest.z = floor ( src.z ) 51dest.w = floor ( src.w ) 52</pre> 53 </div> 54 55 <h2>Code Example</h2> 56 <div class="section"> 57<pre class="definition"> 58flr r0, r1 59</pre> 60 </div> 61 62 <h2>Timetable</h2> 63 <div class="section"> 64 <table class="timetable"> 65 <tr> 66 <th></th> 67 <th>1</th><th>2</th><th>3</th> 68 </tr> 69 <tr> 70 <th>flr</th> 71 <td class="read">read</td> 72 <td class="FLOOR">FLOOR</td> 73 <td class="write">write</td> 74 <td class="dummy"></td> 75 </tr> 76 </table> 77 </div> 78 79 80 <h2>Revision History</h2> 81 <div class="section"> 82 <dl class="history"> 83 <dt>2011/12/20</dt> 84 <dd>Initial version.<br /> 85 </dd> 86 </dl> 87 </div> 88 89 <hr><p>CONFIDENTIAL</p></body> 90</html>