%%
%%Thisfilecontainstlccodeforgenerationoffixedpointdivision
%%
%%Copyright1994-2011TheMathWorks,Inc.
%%
 
%%Function:FixPt_Division==========================================
%%Abstract:
%%Vc=Va/Vb
%%Synopsis:
%%FixPt_Division(cLabel,cDT,aLabel,aDT,bLabel,bDT,roundMode,satMode)
%%
%%cLabel,cDT=recorddescribingoutput
%%aLabel,aDT=recorddescribinginput1
%%bLabel,bDT=recorddescribinginput2
%%roundMode=stringspecifyingroundto"Zero","Nearest",etc.
%%satMode=stringspecifying"Wrap"or"Saturate"onoverflow
%%
%function FixPt_Division(cLabel,cDT,aLabel,aDT,bLabel,bDT,roundMode,satMode) Output
  %%
  %<FixPt_WordLengthLimitationCheck(aDT)>/
  %<FixPt_WordLengthLimitationCheck(bDT)>/
  %<FixPt_WordLengthLimitationCheck(cDT)>/
  %%
  %assign vec = FixPt_BinaryOp("FixPtDiv", cLabel, cDT, aLabel, aDT, ...
    bLabel, bDT, roundMode, satMode)
  %%
  % /
  %%
%endfunction